Open
Description
Hi! Does ndarray support any matrix-free solvers?
In matrix-free solver, instead of x = solve(A, b)
, we run x = solve(f, b)
, where f is a function f(y) = Ay
that can evaluate the product of A and any vector. This is useful in some situations where we don't need to store the entire matrix. https://en.wikipedia.org/wiki/Matrix-free_methods
This is Eigen's version: https://eigen.tuxfamily.org/dox/group__MatrixfreeSolverExample.html