opensrdk-linear-algebra 0.8.3

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

pub use crate::{
    matrix::{
        bd::*,
        ci::*,
        di::*,
        ge::{
            or_un::*,
            sy_he::{po::*, *},
            tr::*,
            *,
        },
        gt::*,
        kr::*,
        sp_hp::{pp::*, *},
        ss::*,
        st::{pt::*, *},
        to::*,
        *,
    },
    number::*,
};

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