File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 3636//! - [Random matrix generators](generate/index.html)
3737//! - [Scalar trait](types/trait.Scalar.html)
3838
39- pub mod arnoldi;
4039pub mod assert;
4140pub mod cholesky;
4241pub mod convert;
@@ -47,6 +46,7 @@ pub mod generate;
4746pub mod inner;
4847pub mod lapack;
4948pub mod layout;
49+ pub mod mgs;
5050pub mod norm;
5151pub mod operator;
5252pub mod opnorm;
@@ -66,6 +66,7 @@ pub use eigh::*;
6666pub use generate:: * ;
6767pub use inner:: * ;
6868pub use layout:: * ;
69+ pub use mgs:: * ;
6970pub use norm:: * ;
7071pub use operator:: * ;
7172pub use opnorm:: * ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ impl<A: Scalar> MGS<A> {
2121 /// ```rust
2222 /// # use ndarray_linalg::*;
2323 /// const N: usize = 5;
24- /// let mgs = arnoldi:: MGS::<f32>::new(N);
24+ /// let mgs = MGS::<f32>::new(N);
2525 /// assert_eq!(mgs.dim(), N);
2626 /// assert_eq!(mgs.len(), 0);
2727 /// ```
@@ -72,7 +72,7 @@ impl<A: Scalar> MGS<A> {
7272 /// ```rust
7373 /// # use ndarray::*;
7474 /// # use ndarray_linalg::*;
75- /// let mut mgs = arnoldi:: MGS::new(3);
75+ /// let mut mgs = MGS::new(3);
7676 /// let coef = mgs.append(array![0.0, 1.0, 0.0], 1e-9).unwrap();
7777 /// close_l2(&coef, &array![1.0], 1e-9).unwrap();
7878 ///
Original file line number Diff line number Diff line change 11use ndarray:: * ;
2- use ndarray_linalg:: { arnoldi :: * , * } ;
2+ use ndarray_linalg:: * ;
33
44fn qr_full < A : Scalar + Lapack > ( ) {
55 const N : usize = 5 ;
You can’t perform that action at this time.
0 commit comments