Go to file
Brendan Zabarauskas d7f5efadbd Remove anonymous impls on types and transfer functionality to traits
Unfortunately this causes Rust's type inference to struggle, but this is a problem with the rust compiler and hopefully this will improve over time. Users are encouraged to use the type aliases and static method wrappers included with each module.
2013-01-29 20:26:48 +11:00
src Remove anonymous impls on types and transfer functionality to traits 2013-01-29 20:26:48 +11:00
.gitignore Ignore dSYM packages 2012-11-07 11:11:22 +10:00
LICENSE.txt Add Apache 2.0 License 2012-11-01 11:59:21 +10:00
Makefile Rename library to lmath 2012-11-02 09:14:07 +10:00
README.md Readme edits 2012-12-19 23:13:01 +10:00

Lmath-rs

Lmath is generic linear algebra library for Rust. There is still much to do, unit tests to write, bugs to fix, and performance enhancements to make. Help is much appreciated, so please don't hesitate to send me a pull request.

Installation

$ cargo install lmath

Dependencies

numeric-rs (can be installed via $ cargo install numeric)

~B☼