aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/LU
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-09-22 21:51:23 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-09-22 21:51:23 -0400
commit0ad3494bd370ec992ac1eabaec60ea604ea14a29 (patch)
treed9049da18caf42255c6300c6d7951d961012f4d4 /Eigen/src/LU
parentab5cc8284aedae58885902f3764d19a8ff05f758 (diff)
fix docs
Diffstat (limited to 'Eigen/src/LU')
-rw-r--r--Eigen/src/LU/LU.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/Eigen/src/LU/LU.h b/Eigen/src/LU/LU.h
index 0475b5be3..a5ca9bf8f 100644
--- a/Eigen/src/LU/LU.h
+++ b/Eigen/src/LU/LU.h
@@ -302,22 +302,19 @@ template<typename MatrixType> class LU
/** This method returns a solution x to the equation Ax=b, where A is the matrix of which
* *this is the LU decomposition.
*
- * If no solution exists, then the result is undefined. If only an approximate solution exists,
- * then the result is only such an approximate solution.
- *
* \param b the right-hand-side of the equation to solve. Can be a vector or a matrix,
* the only requirement in order for the equation to make sense is that
* b.rows()==A.rows(), where A is the matrix of which *this is the LU decomposition.
*
- * \returns a solution, if any exists. See notes below.
+ * \returns a solution.
*
- * Example: \include LU_solve.cpp
- * Output: \verbinclude LU_solve.out
+ * \note_about_inexistant_solutions
*
- * \note \note_about_inexistant_solutions
+ * \note_about_arbitrary_choice_of_solution
+ * \note_about_using_kernel_to_study_multiple_solutions
*
- * \note \note_about_arbitrary_choice_of_solution
- * \note_about_using_kernel_to_study_multiple_solutions
+ * Example: \include LU_solve.cpp
+ * Output: \verbinclude LU_solve.out
*
* \sa TriangularView::solve(), kernel(), computeKernel(), inverse(), computeInverse()
*/