//! Linear algebra helpers for yield curve fitting (requires `openblas` feature).
//!
//! Wraps `ndarray-linalg::Solve` for small NxN systems used in OLS regression.
use Array1;
use Array2;
use Solve;
/// Solve an NxN linear system $Ax = b$ using ndarray-linalg (LAPACK LU decomposition).