Makogan
Makogan
I have something similar in my code which returns the following error: ```rs error[E0277]: the trait bound `T: nalgebra_lapack::svd::SVDScalar` is not satisfied --> crates/algebra/src/lib.rs:254:21 | 254 | {let svd =...
I will try it out, thank you for the suggestion.
I want to mention that with the popularisation of geometric algebras and other mathematical concepts that define new math types this feature will probably see more and more demand. Being...
> Tradeoffs between time and space are always difficult to estimate but one guesses that always having to normalise a point by dividing by its homogeneous coordinate using the Newton-Raphson...
I will try to do so, but I am not super optimistic :sweat_smile: part of the reason I am looking for PGA libraries is because I tried to roll my...
I want to make a suggestion. I think there might be a way to easily enable interoperability of this library with foreign data types. One could define the Mul/Add etc...
The trait I was suggesting would not be meaningfully diffrent from the standard `Into` trait. So that's probably a better idea. But yes the suggestion would be: ```rust impl Add...
So this is a no, from what I am hearing?
I would also like to have the full SVD as I need it for extracting the basis of the null space. It should be written in the documentation at the...
I pushed a PR that addresses the issue. It's just a matter of explicitly checking for null pointers. In the process I also noticed that the rust crate points to...