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

none of the new methods are being implemented (probably me being dumb)

Open conorpo opened this issue 1 year ago • 2 comments

use ndarray_linalg::Inverse;
use ndarray::*;

const DIM : usize = 2;
type Matrix = Array2<f64>;
type Vector = Array1<f64>;
type Edge = (u16, u16);
[dependencies]
ndarray =  { version = "0.16.1", features = ["blas"]}
ndarray-linalg = { version = "0.16.0", features = ["openblas-system"] }

Pretty sure I installed openblas correctly using vcpkg, before rust-analyzer wasnt working at all but now its working, just giving me errors whenever I try to call .inv() or .trace() (or any of the new methods)

no method named `inv` found for struct `ArrayBase` in the current scope
method not found in `ArrayBase<OwnedRepr<f64>, Dim<[usize; 2]>>`

please let me know what other info yall need.

conorpo avatar Nov 28 '24 02:11 conorpo

I have this issue as well (probably me being dumb)

zuramai avatar Dec 13 '24 04:12 zuramai

I had the same issue and opened #380 a while ago. It seems like this crate lacks active maintainers sadly (see #381).

Silzinc avatar Dec 14 '24 20:12 Silzinc