Makogan

Results 35 comments of Makogan

> I think you misunderstand :) > > I'm sure they would acknowledge that this is a mistake and would fix it (I'm not an nalgebra contributor), but they literally...

Has anyone solved the "Unknown MEX argument '-L'." yet? I need to build a project and I cannot do it until I solve this issue :p

> There certainly is no implementation of one in `nalgebra`. In numerical linear algebra, Gauss elimination is usually supplanted by the LU decomposition (which is in fact Gaussian elimination but...

It seems that if I add this to the cmake it links? ``` find_package(TBB REQUIRED) target_link_libraries(IfcPlusPlus PUBLIC TBB::tbb) ```

Piggy backing off of this issue, it seems the example `examples/SimpleViewerExampleQt` is not properly formed? I tried using `cmake -DIFCPP_SOURCE_DIR=../../ ..` under a standard `build` directory, it yields this: ```...

Sorry for the delay. This was a while ago and I am trying to remember what the issue was. First @mnickrogers that link is about the inner storage type implementing...

> @Makogan are you still looking for a solution implementing exact size for outer type DMatrix problem so you can use STL methods on DMatrix? I have found a work...

Yes it works for square matrices but for efficiency purposes it is not computing the full SVD for rectangular matrices, for example: ``` use nalgebra::*; fn main() { let x...

the struct ```rs use nalgebra_lapack::SVD; SVD::new(&matrix); ``` Cannot be used in a generic context, because it will demand that the generic scalar type implement the following trait: `T: nalgebra_lapack::svd::SVDScalar,` This...

> I'm unsure what you mean; it should work just like this: > > ```rust > use nalgebra::dmatrix; > use nalgebra_lapack::SVD; > > fn main() { > let x =...