//! Fixed-size, stack-allocated linear algebra.
//!
//! - [`Vector`] / [`Matrix`] — const-generic, array-backed (row-major), no allocation; shape
//! mismatches are compile errors. `Index` (`v[i]`, `m[(r, c)]`) is the ergonomic path
//! (panics on OOB); `get` / `get_mut` / `try_row` / `try_column` return `Option`.
pub use Cholesky;
pub use Lu;
pub use Matrix;
pub use ;
pub use Svd;
pub use Vector;
/// Shared numeric helpers, reachable inside the crate now that `qr` is private.
pub use ;