High-performance linear algebra and statistical analysis utilities for deterministic simulations.
auto A = new Matrix([[4.0, 7.0], [2.0, 5.0]]);
auto b = new Matrix([[1.0], [2.0]]);
auto det = A.Det;
auto A_inv = A.Inv;
auto x = A_inv * b;
double mean = x.Mean();
High-performance linear algebra and statistical analysis utilities for deterministic simulations.