File tree 3 files changed +4
-6
lines changed
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
2
2
//!
3
3
//! LAPACK correspondance
4
4
//! ----------------------
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
2
2
//!
3
3
//! LAPACK correspondance
4
4
//! ----------------------
Original file line number Diff line number Diff line change @@ -88,11 +88,11 @@ pub mod flags;
88
88
pub mod layout;
89
89
90
90
pub mod eig;
91
+ pub mod eigh;
92
+ pub mod eigh_generalized;
91
93
92
94
mod alloc;
93
95
mod cholesky;
94
- mod eigh;
95
- mod eigh_generalized;
96
96
mod least_squares;
97
97
mod opnorm;
98
98
mod qr;
@@ -105,8 +105,6 @@ mod triangular;
105
105
mod tridiagonal;
106
106
107
107
pub use self :: cholesky:: * ;
108
- pub use self :: eigh:: * ;
109
- pub use self :: eigh_generalized:: * ;
110
108
pub use self :: flags:: * ;
111
109
pub use self :: least_squares:: * ;
112
110
pub use self :: opnorm:: * ;
You can’t perform that action at this time.
0 commit comments