Andreas Borgen Longva

Results 238 comments of Andreas Borgen Longva

Thanks for working on this @CattleProdigy, this is really great. I am not at all familiar with the code here, so given the subtlety of eigenvalue routines, I don't feel...

Thanks @sarah-ek, this is impressive work! I'm personally cautiously positive towards working towards integrating `gemm` here, given the preliminary results. There are a number of considerations to take though, and...

I forgot to mention, but having more contributors run the benchmarks on their computers would also be helpful, since these low-level kernels might be highly sensitive to the hardware, and...

I'm overall very happy with the Rust plugin, but this is easily the biggest issue that I have with CLion's Rust integration at the moment. While CLion insists on indexing...

If I understand @nilgoyette correctly, I think this is mathematically best expressed by the multiplication of a diagonal matrix and a matrix, i.e. $\text{diag}(v) M$, where $\text{diag}{\cdot}$ is an operation...

> Is there still discussion on what that would look like? Would you accept a PR for it? Something like `Vector::.diag() -> Matrix::`? We should probably flesh this out in...

Thanks for the PR @Lishen1, I think this kind of functionality is sorely needed in `nalgebra`. Converting between different storages often requires different approaches depending on what needs to be...

@nestordemeure: Can you elaborate on what exactly you mean by solving a non-square system? Do you mean in a least squares sense? I believe that if you want to use...

My personal opinion is that the `README` might contain one or two motivating examples, but further examples should rather reside in a dedicated location. The `examples` folder is a pretty...

Update: Chucking all the code into a `rayon::scope(|_| {}` closure seems to remove a significant part of the overhead (but not all). This suggests that the switch between main thread...