To solve a system of equations with one or more right-hand sides, where
the matrix is stored in skyline storage mode, you can use either of the
following methods. The factored output matrix is the same for both of these
methods.
- Call the skyline subroutine with the combined factor-and-solve option.
- Call the skyline subroutine with the factor-only option, followed in your
program by a call to the same subroutine with the solve-only option. The
factored output matrix resulting from the factorization should be used as
input to the same subroutine to do the solve. You can solve for the right-hand
sides in a single call or in individual calls.
You also have the option of doing a partial factorization, where the
subroutine assumes that the initial part of the input matrix is already
factored. It then factors the remaining rows and columns. If you want, you can
factor a very large matrix progressively by using this option.