OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:diagSize
(Results
1 - 5
of
5
) sorted by null
/external/eigen/Eigen/src/Core/products/
TriangularMatrixMatrix.h
102
Index
diagSize
= (std::min)(_rows,_depth);
103
Index rows = IsLower ? _rows :
diagSize
;
104
Index depth = IsLower ?
diagSize
: _depth;
231
Index
diagSize
= (std::min)(_cols,_depth);
233
Index depth = IsLower ? _depth :
diagSize
;
234
Index cols = IsLower ?
diagSize
: _cols;
TriangularMatrixVector.h
96
Index
diagSize
= (std::min)(_rows,_cols);
97
Index rows = IsLower ? _rows :
diagSize
;
98
Index cols = IsLower ?
diagSize
: _cols;
111
for (Index pi=0; pi<
diagSize
; pi+=PanelWidth)
113
Index actualPanelWidth = (std::min)(PanelWidth,
diagSize
-pi);
135
if(IsLower && rows>
diagSize
)
138
rows-
diagSize
, cols,
139
&lhs.coeffRef(
diagSize
,0), lhsStride,
141
&res.coeffRef(
diagSize
), resIncr, alpha);
/external/eigen/test/
jacobisvd.cpp
54
Index
diagSize
= (std::min)(rows, cols);
62
VERIFY_IS_APPROX(svd.matrixU(), referenceSvd.matrixU().leftCols(
diagSize
));
66
VERIFY_IS_APPROX(svd.matrixV(), referenceSvd.matrixV().leftCols(
diagSize
));
122
Index
diagSize
= (std::min)(m.rows(), m.cols());
124
VERIFY_IS_APPROX(m, svd.matrixU().leftCols(
diagSize
) * svd.singularValues().asDiagonal() * svd.matrixV().leftCols(
diagSize
).adjoint());
/external/eigen/unsupported/Eigen/src/Skyline/
SkylineStorage.h
57
resize(other.
diagSize
(), other.m_upperProfileSize, other.m_lowerProfileSize, other.upperSize(), other.lowerSize());
98
void resize(Index
diagSize
, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize, float reserveSizeFactor = 0) {
99
if (m_allocatedSize <
diagSize
+ upperSize + lowerSize)
100
reallocate(
diagSize
, upperProfileSize, lowerProfileSize, upperSize + Index(reserveSizeFactor * upperSize), lowerSize + Index(reserveSizeFactor * lowerSize));
101
m_diagSize =
diagSize
;
108
inline Index
diagSize
() const {
203
inline void reallocate(Index
diagSize
, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize) {
205
Scalar* diag = new Scalar[
diagSize
];
211
Index copyDiagSize = (std::min)(
diagSize
, m_diagSize);
237
m_allocatedSize =
diagSize
+ upperSize + lowerSize
[
all
...]
/external/eigen/Eigen/src/SVD/
JacobiSVD.h
[
all
...]
Completed in 86 milliseconds