the inversion of large impedance matrix in MOM

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 Comments

How are you solving A*X=B ?
X = (A^-1)*B !!!
Use X = A \ B; instead.
rahman
rahman on 14 Sep 2015
Edited: rahman on 14 Sep 2015
I try it. But unfortunately nothing changed. It used same amount of RAMs! Is there any programming or mathematical techniques?
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.
Tnx Steven Lord, GMRES is a good idea. It reduced about 2GB RAMs.

Sign in to comment.

Answers (1)

2 Comments

I try it but it takes more time with same RAMs!
Then the answer to your original question is NO. Install more RAM if the current size is a problem.

Sign in to comment.

Categories

Find more on Linear Algebra in Help Center and File Exchange

Asked:

on 14 Sep 2015

Commented:

on 16 Sep 2015

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!