ndarray-linalg
ndarray-linalg copied to clipboard
Linear algebra package for rust-ndarray using LAPACK binding
https://github.com/rust-ndarray/ndarray-linalg/pull/241#issuecomment-667694684
# Question - Hi I run in a problem related with `LeastSquare`: I am trying to import the `ndarray_linalg:: {LeastSquaresSvd, LeastSquaresSvdInto, LeastSquaresSvdInPlace}` . And calling from `ndarray::Array1::least_squares` class. - However...
Very limited proof of concept PR to wrap around LAPACK's `dpstrf` and carry out the Cholesky Factorization of PSD matrices. In its current state of `ndarray_linalg` does not handle this...
Currently, Cholesky will fail on PSD but not PD matrices, because it calls `?pptrf`. ``` use ndarray::{array, Array, Axis}; use ndarray_linalg::cholesky::*; fn main() -> Result { let x1 = array![1.,...
Consider the following code ```rust let a = arr2(&[[1.], [0.]]); let (q, r) = a.qr().unwrap(); println!("q = {}", q); println!("r = {}", r); ``` The output is ```shell q =...
Inherit from #74, related to #226 LAPACK routines for triangular, symmetric, Hermitian matrices, e.g. dsyev, only read and write to upper or lower part of storage. This is why we...
Hey folks! I am trying to use ndarray-linalg to calculate an orthonormal basis and an inverse. Sadly it is 100% non-obvious to how to achieve this. Is there maybe a...