A lot of numerical solvers (such as this one), for some reason, only supports solving Ax=b where x, b are vectors.
What if I want to solve AX = B, where X and B are matrices.
I know numerically one should almost never invert a matrix. and there are special reasons I want to use an iterative solver. For example I have a reasonable guess of the solution. I just want to find a way to generalize the Ax=b solver (where x,b are vectors) to AX=B (where X, B are matricies).
I can loop over the vectors, but looping would have overhead, and I dont want to directly use numpy.linalg.solve because I do want to use the special feature of Ax=b solver. Is there a feature in python that speeds this up?
xvector solutions (effectively in parallel).