File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1
1
//! Eigenvalue problem for general matricies
2
+ //!
3
+ //! LAPACK correspondance
4
+ //! ----------------------
5
+ //!
6
+ //! | f32 | f64 | c32 | c64 |
7
+ //! |:------|:------|:------|:------|
8
+ //! | sgeev | dgeev | cgeev | zgeev |
9
+ //!
2
10
3
11
use crate :: { error:: * , layout:: MatrixLayout , * } ;
4
12
use cauchy:: * ;
Original file line number Diff line number Diff line change 58
58
//! According to the property input metrix,
59
59
//! there are several types of eigenvalue problem API
60
60
//!
61
- //! - [Eig_] trait provides methods for eigenvalue problem for general matrix.
61
+ //! - [eig] module for eigenvalue problem for general matrix.
62
62
//! - [Eigh_] trait provides methods for eigenvalue problem for symmetric/hermite matrix.
63
63
//!
64
64
//! Singular Value Decomposition
@@ -146,6 +146,7 @@ pub trait Lapack:
146
146
macro_rules! impl_lapack {
147
147
( $s: ty) => {
148
148
impl Lapack for $s {
149
+ /// Compute right eigenvalue and eigenvectors
149
150
fn eig(
150
151
calc_v: bool ,
151
152
l: MatrixLayout ,
You can’t perform that action at this time.
0 commit comments