nalgebra - Rust 的线性代数库
nalgebra 是一个使用 Rust 编程语言编写的线性代数库。它面向需要高效向量和矩阵运算以及几何变换的应用程序。它旨在快速且全面地实现。
nalgebra 是 n-dimensional linear algebra library 的某种缩写形式,其中 n 是有限的严格正整数。
nalgebra 依赖于官方 Rust 包管理器 Cargo 进行依赖解析和编译。因此,要让 nalgebra 准备好供你的项目使用,只需在 Cargo.toml 文件中添加一个新依赖即可。
[dependencies]
nalgebra = "*" # replace * by the latest version of the crate.
Cargo example
以下是 Cargo.toml 文件的完整示例:
[package]
name = "example-using-nalgebra"
version = "0.0.0"
authors = [ "You" ]
[dependencies]
nalgebra = "*" # replace * by the latest version of the crate.
[[bin]]
name = "example"
path = "./example.rs"
