//! Module with some functions that implement basic algebraic operations between sparse vectors.
//! Here a sparse vector is just a `HashMap<ID, f64>`
use HashMap;
/// Computes the dot product between two sparse vectors.
/// Computes the norm of an sparse vector.
/// Computes the covariance between two sparse vectors.
/// It treats the vectors as discrete uniform random variables.