Linear algebra library for Rust.
Go to file
Andreas Longva a52b079578 Relax invertibility test in try_inverse()
The previous implementation of try_inverse() used an approximate
check of the determinant against 0 for small matrices to
determine if the matrix was invertible. This is not a reliable test,
and may fail for perfectly invertible matrices. This change
simply makes the test criterion an exact comparison instead.
2017-04-28 19:11:33 +02:00
benches Complete library rewrite. 2016-12-04 22:47:36 +01:00
examples Fix mvp matrix construction typo. 2017-03-02 21:35:39 +01:00
src Relax invertibility test in try_inverse() 2017-04-28 19:11:33 +02:00
tests Relax invertibility test in try_inverse() 2017-04-28 19:11:33 +02:00
.gitignore update .gitignore. 2016-08-21 22:01:39 +02:00
.travis.yml Fix travis.yml. 2017-02-15 22:24:07 +01:00
CHANGELOG.md Release v0.12.0. 2017-04-25 19:24:50 +02:00
Cargo.toml Release v0.12.0. 2017-04-25 19:24:50 +02:00
LICENSE Initial commit. 2013-05-14 11:34:28 +00:00
Makefile Make serde optional behind the "serde-serialize" feature. 2017-02-15 22:04:34 +01:00
README.md Make serde optional behind the "serde-serialize" feature. 2017-02-15 22:04:34 +01:00

README.md

crates.io

Build status crates.io

Users guide | Documentation | Forum


Linear algebra library for the Rust programming language.