solve a linear sparse system given the LU factors
[x] = umf_lusolve(LU_ptr, b [, st, A])
:LU_ptr a pointer to umf lu factors (L,U,p,q,R) : :b a real or complex column vector or a matrix (multiple rhs) : :st (optional) a string “Ax=b” (default) or “Ax’=b” (to be written
“Ax’‘=b” in scilab langage: a quote in a string must be doubled !)
:
This function must be used in conjonction with umf_lufact which computes the LU factors of a sparse matrix. The optional st argument lets us choose between the solving of Ax=b (general case) or of A’x=b (sometimes useful). If you give the 4th argument then iterative refinement will be also proceceed (as in umfpack) to give a better numerical solution.
see the example section of umf_lufact