//! Construct `StaticMatrix`/`DynamicMatrix` and run each matrix operation on them.
//!//! Run with: `cargo run --example matrix` (static only), or
//! `cargo run --example matrix --features alloc` (static and dynamic)
modstatic_matrix;#[cfg(feature ="alloc")]moddynamic_matrix;fnmain(){static_matrix::run();#[cfg(feature ="alloc")]dynamic_matrix::run();}