Skip to content

Commit a2bb5e2

Browse files
committed
add comment on src/eig.rs
1 parent b1e0611 commit a2bb5e2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/eig.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ use crate::types::*;
77

88
/// Eigenvalue decomposition of general matrix reference
99
pub trait Eig {
10+
/// EigVec is the right eivenvector
1011
type EigVal;
1112
type EigVec;
13+
/// Calculate eigenvalues with the right eigenvector
1214
fn eig(&self) -> Result<(Self::EigVal, Self::EigVec)>;
1315
}
1416

0 commit comments

Comments
 (0)