the inversion of large impedance matrix in MOM
1 次查看(过去 30 天)
显示 更早的评论
Hi all
I try to analyse a structure using method of moment which produces large dense squared impedance matrix. when I try to solve the matrix equation A*X=B, the inversion procedure takes more than 4GB RAMs.Is there any idea to solve this matrix equation in reasonable time with less RAMs?
6 个评论
Steven Lord
2015-9-14
How large is your "large dense" matrix?
Are you using a 32-bit or 64-bit version of MATLAB?
Can you easily compute A*x for a vector x without explicitly creating the matrix A? If so, use one of the iterative solvers like GMRES.
回答(1 个)
Walter Roberson
2015-9-14
svd with 'econ' mode and see http://adrianboeing.blogspot.ca/2010/05/inverting-matrix-svd-singular-value.html
2 个评论
Walter Roberson
2015-9-14
Then the answer to your original question is NO. Install more RAM if the current size is a problem.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Mathematics and Optimization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!