Popularity
2.9
Declining
Activity
1.8
Stable
81
8
18
Programming language: Rust
License: GNU General Public License v3.0 or later
Add another 'LAPACK' Package
Popular Comparisons
README
LAPACK
The package provides wrappers for [LAPACK] (Fortran).
The usage of the package is explained here.
Example
use lapack::*;
let n = 3;
let mut a = vec![3.0, 1.0, 1.0, 1.0, 3.0, 1.0, 1.0, 1.0, 3.0];
let mut w = vec![0.0; n as usize];
let mut work = vec![0.0; 4 * n as usize];
let lwork = 4 * n;
let mut info = 0;
unsafe {
dsyev(b'V', b'U', n, &mut a, n, &mut w, &mut work, lwork, &mut info);
}
assert!(info == 0);
for (one, another) in w.iter().zip(&[2.0, 2.0, 5.0]) {
assert!((one - another).abs() < 1e-14);
}
Contribution
Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in [LICENSE.md](LICENSE.md).
*Note that all licence references and agreements mentioned in the lapack README section above
are relevant to that project's source code only.