runmat-runtime 0.4.1

Core runtime for RunMat with builtins, BLAS/LAPACK integration, and execution APIs
Documentation
//! Shape-manipulation builtins (reshape, squeeze, permute, …).

pub(crate) mod cat;
pub(crate) mod circshift;
pub(crate) mod diag;
pub(crate) mod flip;
pub(crate) mod fliplr;
pub(crate) mod flipud;
pub(crate) mod horzcat;
pub(crate) mod ipermute;
pub(crate) mod kron;
pub(crate) mod permute;
pub(crate) mod repmat;
pub(crate) mod reshape;
pub(crate) mod rot90;
pub(crate) mod squeeze;
pub(crate) mod tril;
pub(crate) mod triu;
pub(crate) mod vertcat;