Lines Matching defs:Size
65 Size = MatrixType::RowsAtCompileTime,
66 SizeMinusOne = Size == Dynamic ? Dynamic : Size - 1,
79 * vector is one less than the size of #MatrixType, if it is a fixed-side
91 * \param [in] size The size of the matrix whose Hessenberg decomposition will be computed.
94 * perform decompositions via compute(). The \p size parameter is only
95 * used as a hint. It is not an error to give a wrong \p size, but it may
100 HessenbergDecomposition(Index size = Size==Dynamic ? 2 : Size)
101 : m_matrix(size,size),
102 m_temp(size),
105 if(size>1)
106 m_hCoeffs.resize(size-1);
142 * denotes the size of the given matrix.
268 typedef Matrix<Scalar, 1, Size, Options | RowMajor, 1, MaxSize> VectorType;