I'm programming in Matlab and in my program I need to solve a system Ax=b
, where A
is a m
by m
square matrix with very small entries. If m
increases, the entries of A
become smaller.
A
is a sparse matrix, so I rename this matrix with the function sparse
of Matlab: B=sparse(A)
.
Can I use a special method to solve Bx=b
without underflow or numerical errors?