Solves a system of LU-factored equations.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=real64), | intent(in), | dimension(:,:) | :: | a |
The N-by-N LU factored matrix as output by lu_factor. |
|
| integer(kind=int32), | intent(in), | dimension(:) | :: | ipvt |
The N-element pivot array as output by lu_factor. |
|
| real(kind=real64), | intent(in), | dimension(:,:) | :: | b |
The N-by-NRHS right-hand-side matrix. |
The N-by-NRHS solution matrix.
Solves a system of LU-factored equations.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| complex(kind=real64), | intent(in), | dimension(:,:) | :: | a |
The N-by-N LU factored matrix as output by lu_factor. |
|
| integer(kind=int32), | intent(in), | dimension(:) | :: | ipvt |
The N-element pivot array as output by lu_factor. |
|
| complex(kind=real64), | intent(in), | dimension(:,:) | :: | b |
The N-by-NRHS right-hand-side matrix. |
The N-by-NRHS solution matrix.
Solves a system of LU-factored equations.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=real64), | intent(in), | dimension(:,:) | :: | a |
The N-by-N LU factored matrix as output by lu_factor. |
|
| integer(kind=int32), | intent(in), | dimension(:) | :: | ipvt |
The N-element pivot array as output by lu_factor. |
|
| real(kind=real64), | intent(in), | dimension(:) | :: | b |
The N-element right-hand-side array. |
The N-element solution array.
Solves a system of LU-factored equations.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| complex(kind=real64), | intent(in), | dimension(:,:) | :: | a |
The N-by-N LU factored matrix as output by lu_factor. |
|
| integer(kind=int32), | intent(in), | dimension(:) | :: | ipvt |
The N-element pivot array as output by lu_factor. |
|
| complex(kind=real64), | intent(in), | dimension(:) | :: | b |
The N-element right-hand-side array. |
The N-element solution array.
Solves a linear system using an LU decomposition.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(msr_matrix), | intent(in) | :: | lu |
The LU matrix. |
||
| integer(kind=int32), | intent(in), | dimension(:) | :: | ju |
The row tracking array. |
|
| real(kind=real64), | intent(in), | dimension(:) | :: | b |
The right-hand side. |
The solution.