Skip to content

Commit

Permalink
Update document
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Sep 24, 2022
1 parent 1334d85 commit 3535eee
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions lax/src/eig.rs
@@ -1,4 +1,12 @@
//! Eigenvalue problem for general matricies
//!
//! LAPACK correspondance
//! ----------------------
//!
//! | f32 | f64 | c32 | c64 |
//! |:------|:------|:------|:------|
//! | sgeev | dgeev | cgeev | zgeev |
//!

use crate::{error::*, layout::MatrixLayout, *};
use cauchy::*;
Expand Down
3 changes: 2 additions & 1 deletion lax/src/lib.rs
Expand Up @@ -58,7 +58,7 @@
//! According to the property input metrix,
//! there are several types of eigenvalue problem API
//!
//! - [Eig_] trait provides methods for eigenvalue problem for general matrix.
//! - [eig] module for eigenvalue problem for general matrix.
//! - [Eigh_] trait provides methods for eigenvalue problem for symmetric/hermite matrix.
//!
//! Singular Value Decomposition
Expand Down Expand Up @@ -146,6 +146,7 @@ pub trait Lapack:
macro_rules! impl_lapack {
($s:ty) => {
impl Lapack for $s {
/// Compute right eigenvalue and eigenvectors
fn eig(
calc_v: bool,
l: MatrixLayout,
Expand Down

0 comments on commit 3535eee

Please sign in to comment.