OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:transpositions
(Results
1 - 3
of
3
) sorted by null
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
NameDistance.java
137
int
transpositions
= 0;
local
145
transpositions
++;
152
float jaro = ((m / length1 + m / length2 + (m - (
transpositions
/ 2f)) / m)) / 3;
/external/eigen/Eigen/src/Cholesky/
LDLT.h
65
typedef
Transpositions
<RowsAtCompileTime, MaxRowsAtCompileTime> TranspositionType;
259
static bool unblocked(MatrixType& mat, TranspositionType&
transpositions
, Workspace& temp, SignMatrix& sign)
270
transpositions
.setIdentity();
284
transpositions
.coeffRef(k) = index_of_biggest_in_corner;
388
static bool update(MatrixType& mat, const TranspositionType&
transpositions
, Workspace& tmp, const WType& w, const typename MatrixType::RealScalar& sigma=1)
391
tmp =
transpositions
* w;
400
static EIGEN_STRONG_INLINE bool unblocked(MatrixType& mat, TranspositionType&
transpositions
, Workspace& temp, SignMatrix& sign)
403
return ldlt_inplace<Lower>::unblocked(matt,
transpositions
, temp, sign);
407
static EIGEN_STRONG_INLINE bool update(MatrixType& mat, TranspositionType&
transpositions
, Workspace& tmp, WType& w, const typename MatrixType::RealScalar& sigma=1)
410
return ldlt_inplace<Lower>::update(matt,
transpositions
, tmp, w.conjugate(), sigma)
[
all
...]
/external/eigen/Eigen/src/Core/
Transpositions.h
15
/** \class
Transpositions
18
* \brief Represents a sequence of
transpositions
(row/column interchange)
20
* \param SizeAtCompileTime the number of
transpositions
, or Dynamic
21
* \param MaxSizeAtCompileTime the maximum number of
transpositions
, or Dynamic. This optional parameter defaults to SizeAtCompileTime. Most of the time, you should not have to specify it.
23
* This class represents a permutation transformation as a sequence of \em n
transpositions
29
* Compared to the class PermutationMatrix, such a sequence of
transpositions
is what is
32
* To apply a sequence of
transpositions
to a matrix, simply use the operator * as in the following example:
34
*
Transpositions
tr;
38
* In this example, we detect that the matrix appears on both side, and so the
transpositions
61
/** Copies the \a other
transpositions
into \c *this *
[
all
...]
Completed in 1314 milliseconds