ohsl 0.12.0

A collection of numerical routines and mathematical types for use in scientific computing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//use ohsl::vector::{Vector, Vec64};

mod construction;
mod arithmetic;
mod basic_functions;
mod sequence;
mod norms;
mod random;
mod sort;

/*#[test]
fn file_output() {
    let u = Vector::<u32>::create( vec![ 1, 2, 3, 4, 5 ] );
    u.output( "./output.txt" );
}*/