Crates.io | rusty_math |
lib.rs | rusty_math |
version | 0.7.0 |
source | src |
created_at | 2024-08-20 11:32:38.410606 |
updated_at | 2024-09-01 11:13:14.825725 |
description | This is a Rust library for mathematical, statistical and machine learning operations. |
homepage | |
repository | https://github.com/kjmakwana/rusty_math |
max_upload_size | |
id | 1345156 |
size | 128,407 |
This is a Rust library for mathematical, statistical and machine learning operations.
New version now supports K-Means clustering. See clustering module for more details.
To use rusty_math
in your project, add the following to your Cargo.toml
file:
[dependencies]
rusty_math = "0.7.0"
See detailed documation for list of functionalities in each module.
use rusty_math::gcd;
fn main() {
let result = gcd(12, 15);
println!("GCD of 12 and 15 is {}",result) ;
}
Contributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or submit a pull request.
In case of any questions or feedback feel free to contact me at kjmakwana00@gmail.com
This project is licensed under the MIT License.