We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
into_inverse_alloc
Getting a stack overflow for a 100 by 100 matrix on this line:
rlst/src/dense/linalg/inverse.rs
Line 75 in 9f36f8c
Example code that gets this error:
let size = 100; let mut m = rlst_dynamic_array2!(f64, [size, size]); for i in 0..size { m[[i, i]] = 1.0; } m.view_mut().into_inverse_alloc().unwrap();
The text was updated successfully, but these errors were encountered:
Python exceptions rather than Rust panics for linalg-rs/rlst#98
d58af3b
v0.2.0 (#63)
3a39a74
* version number -> 0.2.0 * Python exceptions rather than Rust panics for linalg-rs/rlst#98 * format
No branches or pull requests
Getting a stack overflow for a 100 by 100 matrix on this line:
rlst/src/dense/linalg/inverse.rs
Line 75 in 9f36f8c
Example code that gets this error:
The text was updated successfully, but these errors were encountered: