We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31c7d4f commit 3464fe0Copy full SHA for 3464fe0
src/lapack_traits/solve.rs
@@ -14,8 +14,8 @@ pub trait Solve_: Sized {
14
/// partial pivoting with row interchanges.
15
///
16
/// If the result matches `Err(LinalgError::Lapack(LapackError {
17
- /// return_code )) if return_code > 0`, then `U[(return_code,
18
- /// return_code)]` is exactly zero. The factorization has been completed,
+ /// return_code )) if return_code > 0`, then `U[(return_code-1,
+ /// return_code-1)]` is exactly zero. The factorization has been completed,
19
/// but the factor `U` is exactly singular, and division by zero will occur
20
/// if it is used to solve a system of equations.
21
unsafe fn lu(MatrixLayout, a: &mut [Self]) -> Result<Pivot>;
0 commit comments