russell_lab 2.6.0

Scientific laboratory for linear algebra and numerical mathematics
Documentation
//! This module implements a "base" functionality to help other modules

mod as_array;
mod auxiliary_blas;
mod enums;
mod find_min_max;
mod find_valleys_and_peaks;
mod formatters;
mod generators;
mod macros;
mod read_table;
mod sort;
mod stopwatch;

pub use as_array::*;
pub use auxiliary_blas::*;
pub use enums::*;
pub use find_min_max::*;
pub use find_valleys_and_peaks::*;
pub use formatters::*;
pub use generators::*;
pub use read_table::*;
pub use sort::*;
pub use stopwatch::*;