Home | History | Annotate | Download | only in LU

Lines Matching defs:determinant

41   * the rank, invertibility, inverse, kernel, and determinant.
57 * \sa MatrixBase::fullPivLu(), MatrixBase::determinant(), MatrixBase::inverse()
258 /** \returns the determinant of the matrix of which
265 * \note For fixed-size matrices of size up to 4, MatrixBase::determinant() offers
268 * \warning a determinant can be very big or small, so for matrices
271 * \sa MatrixBase::determinant()
273 typename internal::traits<MatrixType>::Scalar determinant() const;
583 typename internal::traits<MatrixType>::Scalar FullPivLU<MatrixType>::determinant() const
586 eigen_assert(m_lu.rows() == m_lu.cols() && "You can't take the determinant of a non-square matrix!");