How to solve a linear system A * X = B when B and X are matrices instead as vectors?
1 view (last 30 days)
Show older comments
Sovling a linear system A * X = B when X and B are matrices. If I use lsqr,then B is required to be a vector.
I could also iterate for each column of the B matrix, but that is not very computationally efficient.
Matrix A is very big, so I could not save it explicitly. I could only use a function handle to compute A * X.
0 Comments
Answers (2)
Star Strider
on 22 Apr 2021
The lsqr function is primarily used for sparse systems. There are a number of other options for iterative solutions summarised in Iterative Methods for Linear Systems. I am not certain which (if any) of these would be appropriate to your problem.
See Also
Categories
Find more on Beamforming and Direction of Arrival Estimation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!