HomeSort by relevance Sort by last modified time
    Searched refs:diagSize (Results 1 - 7 of 7) sorted by null

  /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...]
SkylineMatrix.h 384 return m_data.diagSize() + m_data.upperSize() + m_data.lowerSize();
590 const Index diagSize = rows > cols ? cols : rows;
595 if (diagSize % 2) { // diagSize is odd
596 const Index k = (diagSize - 1) / 2;
598 m_data.resize(diagSize, IsRowMajor ? cols : rows, IsRowMajor ? rows : cols,
602 } else // diagSize is even
604 const Index k = diagSize / 2;
605 m_data.resize(diagSize, IsRowMajor ? cols : rows, IsRowMajor ? rows : cols,
616 m_outerSize = diagSize;
    [all...]
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixMatrix_MKL.h 101 Index diagSize = (std::min)(_rows,_depth); \
102 Index rows = IsLower ? _rows : diagSize; \
103 Index depth = IsLower ? diagSize : _depth; \
114 if (((nthr==1) && (((std::max)(rows,depth)-diagSize)/(double)diagSize < 0.5))) { \
143 m = (MKL_INT)diagSize; \
215 Index diagSize = (std::min)(_cols,_depth); \
217 Index depth = IsLower ? _depth : diagSize; \
218 Index cols = IsLower ? diagSize : _cols; \
228 if ((nthr==1) && (((std::max)(cols,depth)-diagSize)/(double)diagSize < 0.5)) {
    [all...]
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);
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;
  /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/Eigen/src/SVD/
JacobiSVD.h     [all...]

Completed in 122 milliseconds