ndarray-linalg icon indicating copy to clipboard operation
ndarray-linalg copied to clipboard

Linear algebra package for rust-ndarray using LAPACK binding

Results 100 ndarray-linalg issues
Sort by recently updated
recently updated
newest added

Currently, I'm working on a vector database project, building specialized hash index for featured data. To generate a locality sensitive hash, I have to import ndarray-linalg as a dependency. However,...

Hello, and thanks for the great library. I would like to request the addition of RQ decomposition. Although it's fairly trivial to implement RQ in terms of QR ([link](https://math.stackexchange.com/a/1640762)), it...

Hello everyone, thanks for the great work. Disclaimer: I'm new to LAPACK & scientific computing in general, apologies if what follows is not perfectly rigorous. I've noticed that the `UPLO`...

```rs use ndarray_linalg::Inverse; use ndarray::*; const DIM : usize = 2; type Matrix = Array2; type Vector = Array1; type Edge = (u16, u16); ``` ```toml [dependencies] ndarray = {...

This might more properly belong in `lapack-sys`, but it would be very useful to be able to reuse BLAS and LAPACK from SciPy when using `lax` and `ndarray-linalg` to build...

To take full advantage of `ndarray` 0.17, it would be good to move the library to the new `ArrayRef` reference type. While this is mostly simple changes, it will take...

Any plans on implementing solvers for **Cyclically** Tridiagonal Matrices? Also, algorithms with _Symmetric_ Tridiagonal Matrices and _Symmetric_ Cyclically Tridiagonal Matrices usually go together, but my guess is that the general...

I am trying to use the qr decomposition method but am getting `signal: 11, SIGSEGV: invalid memory reference` whenever I call it. `Cargo.toml`: ```toml [dependencies] ndarray = { version =...

Error description running `cargo run` on a new project which contains both `ndarray` and `ndarray-linalg` with the feature `openblas-static` on ubuntu linux results in an `openblas` error and a failure...