nalgebra 0.12.1

Linear algebra library with transformations and satically-sized or dynamically-sized matrices.
Documentation
1
2
3
4
5
6
7
8
9
10
11
all:
	CARGO_INCREMENTAL=1 cargo build --features "arbitrary serde-serialize"

doc:
	CARGO_INCREMENTAL=1 cargo doc --no-deps --features "arbitrary serde-serialize"

bench:
	cargo bench

test:
	CARGO_INCREMENTAL=1 cargo test --features "arbitrary serde-serialize"