Is it possible to solve linear system of equations with parallel computing?
Show older comments
I am interested in solving big systems of equations with parallel computing. I have an old script that use the LU decomposition to solve it, but i was trying to speed it up using parallel computation. Do you have any suggestion?
Answers (2)
Sean de Wolski
on 23 Oct 2014
0 votes
It sounds like you have multiple systems to solve, so I would suggest parallelizing over systems of equations. If you can provide more details, we might be able to help.
Giovanni
on 23 Oct 2014
0 votes
1 Comment
For the constant K case, it might be better to gather up your different f into the columns of a matrix [f1,f2,...fn] and solve as
K\[f1,f2,...fn]
If done this way, MATLAB's internal parallelization of mldivide will kick in.
Categories
Find more on Linear Algebra 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!