rust-linear-algebra 0.1.2

A linear algebra library for Rust
Documentation
  • Coverage
  • 0%
    0 out of 63 items documented0 out of 36 items with examples
  • Size
  • Source code size: 28.34 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.96 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • obouhlel/rust-linear-algebra
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • obouhlel

Rust Linear Algebra Library

A comprehensive linear algebra library implemented in Rust, providing efficient and safe mathematical operations.

Features

  • Vector operations
  • Matrix operations
  • Linear transformations
  • Basic algebraic operations
  • Type-safe implementations

Installation

Add this to your Cargo.toml:

[dependencies]
rust-linear-algebra = "0.1.2"

Usage

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],
]);

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.