easy-ml 1.0.0

Matrix and linear algebra library aimed at being easy to use
Documentation
/*!
 * If this is your first time using Easy ML you should check out some of the examples
 * to get an overview of how to use matrices then study the
 * [Matrix](./matrices/struct.Matrix.html) type for what you need.
 *
 * # Examples
 * - [Linear Regression](./linear_regression/index.html)
 * - [k-means Clustering](./k_means/index.html)
 * - [Logistic Regression](./logistic_regression/index.html)
 */

pub mod numeric;
pub mod linear_algebra;
pub mod matrices;
pub mod distributions;

// examples
pub mod linear_regression;
pub mod using_custom_types;
pub mod k_means;
pub mod logistic_regression;