File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1- //! Eigenvalue problem for symmetric/Hermite matricies
1+ //! Eigenvalue problem for symmetric/Hermitian matricies
22//!
33//! LAPACK correspondance
44//! ----------------------
Original file line number Diff line number Diff line change 1- //! Compute generalized right eigenvalue and eigenvectors
1+ //! Generalized eigenvalue problem for symmetric/Hermitian matrices
22//!
33//! LAPACK correspondance
44//! ----------------------
Original file line number Diff line number Diff line change @@ -88,11 +88,11 @@ pub mod flags;
8888pub mod layout;
8989
9090pub mod eig;
91+ pub mod eigh;
92+ pub mod eigh_generalized;
9193
9294mod alloc;
9395mod cholesky;
94- mod eigh;
95- mod eigh_generalized;
9696mod least_squares;
9797mod opnorm;
9898mod qr;
@@ -105,8 +105,6 @@ mod triangular;
105105mod tridiagonal;
106106
107107pub use self :: cholesky:: * ;
108- pub use self :: eigh:: * ;
109- pub use self :: eigh_generalized:: * ;
110108pub use self :: flags:: * ;
111109pub use self :: least_squares:: * ;
112110pub use self :: opnorm:: * ;
You can’t perform that action at this time.
0 commit comments