Dotzilla
Efficient Rust implementation of basic linear algebra routines.
Installation
Run the following command in your project directory:
Or add the following line to your Cargo.toml:
[]
= "0.2.0"
Usage
Dot product
/// Example
use dot_product;
let a = vec!;
let b = vec!;
assert_eq!;
Euclidean (L2) Distance
/// Example
use euclidean_distance;
let a = vec!;
let b = vec!;
assert_eq!;