Home | History | Annotate | Download | only in LU

Lines Matching defs:invertible

55     bool& invertible
59 invertible = abs(determinant) > absDeterminantThreshold;
60 if(invertible) result.coeffRef(0,0) = typename ResultType::Scalar(1) / determinant;
98 bool& invertible
103 invertible = abs(determinant) > absDeterminantThreshold;
104 if(!invertible) return;
167 bool& invertible
176 invertible = abs(determinant) > absDeterminantThreshold;
177 if(!invertible) return;
251 bool& invertible
255 invertible = abs(determinant) > absDeterminantThreshold;
256 if(invertible) compute_inverse<MatrixType, ResultType>::run(matrix, inverse);
305 * \note This matrix must be invertible, otherwise the result is undefined. If you need an
331 * \param invertible Reference to the bool variable in which to store whether the matrix is invertible.
333 * The matrix will be declared invertible if the absolute value of its
346 bool& invertible,
360 (derived(), absDeterminantThreshold, inverse, determinant, invertible);
370 * \param invertible Reference to the bool variable in which to store whether the matrix is invertible.
372 * The matrix will be declared invertible if the absolute value of its
384 bool& invertible,
391 computeInverseAndDetWithCheck(inverse,determinant,invertible,absDeterminantThreshold);