| Crates.io | rust-linear-algebra |
| lib.rs | rust-linear-algebra |
| version | 0.1.2 |
| created_at | 2025-01-31 10:31:21.375381+00 |
| updated_at | 2025-01-31 10:47:47.577977+00 |
| description | A linear algebra library for Rust |
| homepage | |
| repository | https://github.com/obouhlel/rust-linear-algebra |
| max_upload_size | |
| id | 1537395 |
| size | 28,667 |
A comprehensive linear algebra library implemented in Rust, providing efficient and safe mathematical operations.
Add this to your Cargo.toml:
[dependencies]
rust-linear-algebra = "0.1.2"
use rust_linear_algebra::{Matrix, Vector};
// Create a vector
let v = Vector::from([1.0, 2.0, 3.0]);
// Create a matrix
let m = Matrix::from([
[1.0, 0.0],
[0.0, 1.0],
]);
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.