opensrdk-linear-algebra 0.6.3

Standard linear algebra library using blas and lapack for OpenSRDK toolchain.
Documentation
extern crate blas;
extern crate lapack;
#[cfg(test)]
extern crate blas_src;
#[cfg(test)]
extern crate lapack_src;
extern crate rayon;
extern crate thiserror;

pub mod macros;
pub mod matrix;
pub mod number;

pub use crate::{
    matrix::{
        bd::*, ci::*, di::*, ge::*, gt::*, kr::*, po::*, pt::*, sp::*, st::*, to::*, tr::*, *,
    },
    number::*,
};