10.07.2015 Views

Numerical Methods Library for OCTAVE

Numerical Methods Library for OCTAVE

Numerical Methods Library for OCTAVE

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

1. if the matrix is upper (with column permutations) or lower (with row permutations) triangular,per<strong>for</strong>m a sparse <strong>for</strong>ward or backward substitution;2. if the matrix is square, symmetric with a positive diagonal, attempt sparse Choleskyfactorization;3. if the sparse Cholesky factorization failed or the matrix is not sym- metric with a positivediagonal, factorize using the UMFPACK li- brary;4. if the matrix is square, banded and if the band density is "small enough" continue, elsegoto 3;(a) if the matrix is tridiagonal and the right-hand side is not sparse continue, else gotob);i. if the matrix is symmetric, with a positive diagonal, attempt Cholesky factorization;ii. if the above failed or the matrix is not symmetric with a positive diagonal useGaussian elimination with pivoting;(b) if the matrix is symmetric with a positive diagonal, attempt Cholesky factorization;(c) if the above failed or the matrix is not symmetric with a positive diagonal use Gaussianelimination with pivoting;5. if the matrix is not square, or any of the previous solvers flags a singular or near singularmatrix, find a solution in the least-squares sense.Among above-cited solvers, GMRES, MINRES and Conjugate Gradient are used to solve"large" linear system, i.e. , with "large" n.1. MINRES is used to solve linear systems with symmetric indefinite matrices.2. Conjugate Gradient Method is used with symmetric positive definite matrix.3. GMRES is used in other cases.Notice that there are no pre-established rules to solve a linear system. It depends on the size,on the sparse structure... of the system. Kind and location of preconditioners can also be veryimportant.3.2 Linear least squaresWhat meaning should we attribute to a system of linear equations Ax = b if the matrix A is notsquare? Since a nonsquare matrix cannot have an inverse, the system of equations must haveeither no solution or a nonunique solution. Nevertheless, it is often useful to define a uniquevector x that satisfies the linear system in an approximate sense. In this section we will considermethods <strong>for</strong> solving such problems.Let A be an m ×n matrix. We will be concerned with the most commonly occurring case,m > n, which is called overdetermined because there are more equations than unknowns.8

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!