7 个版本
0.1.7 | 2023 年 5 月 24 日 |
---|---|
0.1.6 | 2023 年 5 月 24 日 |
932 在 数学
43 每月下载
8KB
145 行
math_rust - 向量数学库。
发布于 https://crates.io/crates/math_rust
安装
在您的项目目录中运行以下 Cargo 命令
cargo add math_rust
或者在您的 Cargo.toml 中添加以下行
math_rust = "0.1.7"
文档
https://docs.rs/math_rust/latest/math_rust/
模块
list
函数
average
math_rust::list::average
pub fn average(x: &Vec<i32>) -> f64
find_highest
math_rust::list::find_highest
pub fn find_highest(x: &Vec<i32>) -> Option<&i32>
find_lowest
math_rust::list::find_lowest
pub fn find_lowest(x: &Vec<i32>) -> Option<&i32>
is_sorted
math_rust::list::is_sorted
pub fn is_sorted(x: &Vec<i32>) -> bool
median
math_rust::list::median
pub fn median(x: &Vec<i32>) -> f64
mode
math_rust::list::mode
pub fn mode(x: &Vec<i32>) -> Option<i32>
reverse_vector
math_rust::list::reverse_vector
pub fn reverse_vector(x: &Vec<i32>) -> Vec<i32>
sort_vector
math_rust::list::sort_vector
pub fn sort_vector(x: &Vec<i32>) -> Vec<i32>
standard_deviation
math_rust::list::standard_deviation
pub fn standard_deviation(x: &Vec<i32>) -> f64
random_vector
math_rust::list::random_vector
pub fn random_vector(len : i32) -> Vec<i32>
fib_num
math_rust::list::fib_num
pub fn fib_num(len: i32) -> Vec<i32>
依赖项
~315KB