Lines Matching defs:Size
73 Size = MatrixType::RowsAtCompileTime,
74 SizeMinusOne = Size == Dynamic ? Dynamic : (Size > 1 ? Size - 1 : 1),
103 * \param [in] size Positive integer, size of the matrix whose tridiagonal
107 * perform decompositions via compute(). The \p size parameter is only
108 * used as a hint. It is not an error to give a wrong \p size, but it may
113 Tridiagonalization(Index size = Size==Dynamic ? 2 : Size)
114 : m_matrix(size,size),
115 m_hCoeffs(size > 1 ? size-1 : 1),
147 * the size of the given matrix.
150 * object, if the size of the matrix does not change.
354 eigen_assert(n==hCoeffs.size()+1 || n==1);
382 int Size=MatrixType::ColsAtCompileTime,
408 * assumes that they are already of the correct size. The length of the
429 eigen_assert(mat.cols()==mat.rows() && diag.size()==mat.rows() && subdiag.size()==mat.rows()-1);
436 template<typename MatrixType, int Size, bool IsComplex>