https://github.com/stefan-zobel/fixed-size-matrix-rs
Basic arithmetic for compile-time-sized matrices using Rust const generics
https://github.com/stefan-zobel/fixed-size-matrix-rs
const-generics linear-algebra rust sized-matrix
Last synced: 3 months ago
JSON representation
Basic arithmetic for compile-time-sized matrices using Rust const generics
- Host: GitHub
- URL: https://github.com/stefan-zobel/fixed-size-matrix-rs
- Owner: stefan-zobel
- License: other
- Created: 2022-01-20T00:22:20.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-24T01:16:20.000Z (over 3 years ago)
- Last Synced: 2025-01-15T14:14:49.793Z (4 months ago)
- Topics: const-generics, linear-algebra, rust, sized-matrix
- Language: Rust
- Homepage: https://stefan-zobel.github.io/fixed-size-matrix-rs/
- Size: 2.65 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/stefan-zobel/fixed-size-matrix-rs)
[](https://stefan-zobel.github.io/fixed-size-matrix-rs/)# const_matrix-rs
Basic arithmetic for compile-time-sized matrices either allocated on the stack
([SMatrix](https://stefan-zobel.github.io/fixed-size-matrix-rs/const_matrix/matrix/struct.SMatrix.html))
or on the heap ([HMatrix](https://stefan-zobel.github.io/fixed-size-matrix-rs/const_matrix/matrix/struct.HMatrix.html))
using const generics. Both matrix types are fully interoperable with each other.
The elements of a `SMatrix` can be other `SMatrices` which theoretically could
contain `SMatrices` themselves up to arbitrarily deep finite nesting levels.