How can I do FullPivHouseholderQR form Eigen with nalgebra in rust ?
I'm trying omething like this but nalgebra doesn't like dynamic matrix size...
let mat_a: Matrix3xX<f64> = ...;
let vec_b: DVector<f64> = ...;
let vec_x = mat_a
.transpose()
.qr()
.solve(&vec_b)
.ok_or("Can't solve qr decomposition")?;
it works with Martix3, but I need to do it with any number of rows...
And of course I'm not even sure I did the whole operation. Pretty sure I miss the FullPivHousehoder part.
(Yeah I know, I'm all over the place... )
