-
Notifications
You must be signed in to change notification settings - Fork 83
Unable to import traits implementation from ndarray #230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thanks. So like this? ...
let result = a.qr(&b);
...
|
I figured, Yeah still didn't work let result = a.qr_square_inplace(&b); |
The paths in the type Are those |
|
I seem to be having a similar issue, even when pulling the current code from GitHub (which it pulls as ndarray-linalg v0.13.0-alpha.0): Cargo.toml: ... main.rs: use ndarray::{array, Array1, Array2}; fn main() { My error is: error[E0599]: no method named I get this also when trying a.qr(&b). |
@jacobbond I had the same issue. It seems to because of mismatching (out-of-date) dependencies between the ndarray-* crates. For now, setting my dependencies in
|
Question
LeastSquare
: I am trying to import thendarray_linalg:: {LeastSquaresSvd, LeastSquaresSvdInto, LeastSquaresSvdInPlace}
. And calling fromndarray::Array1::least_squares
class.Cargo setup
WSL2
in windows 10The text was updated successfully, but these errors were encountered: