Andreas Borgen Longva

Results 39 issues of Andreas Borgen Longva

The main constructor from existing CSR/CSC data is e.g. [try_from_csr_data](https://docs.rs/nalgebra-sparse/0.2.0/nalgebra_sparse/csr/struct.CsrMatrix.html#method.try_from_csr_data). However, this deliberately rejects unsorted input. However, if the only issue with the data is that the column indices are...

enhancement
good first issue
nalgebra-sparse

The [User Guide on vectors and matrices](https://nalgebra.org/docs/user_guide/vectors_and_matrices) should be updated with instructions for how to use the `matrix!` macro (and related `vector!`, `dvector!` and `dmatrix!` macros) to construct matrices, as...

good first issue
documentation

Some of the methods in `Rotation` have docs that sound somewhat copy-pasted from similar quaternion code. For example, `from_basis_unchecked`: > In order to get a valid unit-quaternion, the input must...

documentation

**Is your feature request related to a problem? Please describe.** Currently, at least as far as I can tell, there's no way to tell which files are actually being used...

enhancement

Rulinalg has implementations of a number of decompositions. Currently these are returned as `Result`, where `tuple` is a tuple of `Matrix`. This is in itself useful, as it gives the...

This PR continues the trend of reworking our decompositions one-by-one. Because the Hessenberg decomposition is very similar to the QR decomposition, we are able to reuse a large amount of...

As I've been working on rewriting some of our decompositions, it has become increasingly clear that we could massively benefit from a rulinalg-specific BLAS-like API. More specifically, I propose the...

The docs for `swap_rows()` currently say: ```text Swaps rows i and j in the permutation matrix. ``` If one thinks of a permutation matrix as a full matrix of 1's...

I just noticed through [this reddit link](https://www.reddit.com/r/rust/comments/5r72aj/cratesio_has_categories/?ref=share&ref_source=link) that [crates.io](https://crates.io) has support for [categories](https://crates.io/categories), although this does not seem to be accessible from the front page yet. I suspect this is...

In this issue, I intend to maintain a list of suggestions for improvements to the `assert_matrix_eq!` and `assert_vector_eq!` macros. As more contributors get a chance to use it, I would...