File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ //! Factorize positive-definite symmetric/Hermitian matrices using Cholesky algorithm
2+
13use super :: * ;
24use crate :: { error:: * , layout:: * } ;
35use cauchy:: * ;
Original file line number Diff line number Diff line change @@ -228,8 +228,6 @@ pub trait Lapack: OperatorNorm_ + Triangular_ + Tridiagonal_ + Rcond_ {
228228 /// 1. Factorize given matrix $A$ into upper ($U$) or lower ($L$) form with diagonal matrix $D$
229229 /// 2. Then solve linear equation $Ax = b$, and/or calculate inverse matrix $A^{-1}$
230230 ///
231- /// [BK]: https://doi.org/10.2307/2005787
232- ///
233231 fn bk ( l : MatrixLayout , uplo : UPLO , a : & mut [ Self ] ) -> Result < Pivot > ;
234232
235233 /// Compute inverse matrix $A^{-1}$ using the result of [Lapack::bk]
Original file line number Diff line number Diff line change 1+ //! Factorize symmetric/Hermitian matrix using [Bunch-Kaufman diagonal pivoting method][BK]
2+ //!
3+ //! [BK]: https://doi.org/10.2307/2005787
4+ //!
5+
16use crate :: { error:: * , layout:: MatrixLayout , * } ;
27use cauchy:: * ;
38use num_traits:: { ToPrimitive , Zero } ;
You can’t perform that action at this time.
0 commit comments