I use finite element method(FEM) to solve some problems. The stiffness matrix K is a very big sparse matrix, I want to solve the equation :
U(freedofs,:) = K(freedofs,freedofs) \ F(freedofs,:)
,
the freedofs
mean free node.
Sometimes I get a warning in MATLAB like
MATLAB:singularMatrix
or MATLAB:nearlySingularMatrix
,
And I calculate the condest(K(freedofs,freedofs))
value which is Inf, but I still get the answer of U and it's quite reasonable, I don't known if there any error? Is the answer of U credible