Does anyone no a simple way to get the inverse of a matrix using the Rust nalgebra::Matrix ? I'm trying to do this the same way as with the C++ Eigen library but clearly not working.
#cargo.toml
[dependencies]
nalgebra = "0.30"
#main.rs
let mut m = Matrix3::new(11, 12, 13,
21, 22, 23,
31, 32, 33);
println!("{}", m);
println!("{}", m.transpose());
println!("{}", m.inverse()); // This blows up