Generic modern interface for TRTRS. Supports s, d, c, z. See also: strtrs, dtrtrs, ctrtrs, ztrtrs.
Modern interface for strtrs. See also: mfi_trtrs, f77_trtrs. Solves a triangular linear system with multiple right-hand sides:
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=REAL32), | intent(in) | :: | a(:,:) | |||
| real(kind=REAL32), | intent(inout) | :: | b(:,:) | |||
| character(len=1), | intent(in), | optional | :: | uplo | ||
| character(len=1), | intent(in), | optional | :: | trans | ||
| character(len=1), | intent(in), | optional | :: | diag | ||
| integer, | intent(out), | optional | :: | info |
Modern interface for dtrtrs. See also: mfi_trtrs, f77_trtrs. Solves a triangular linear system with multiple right-hand sides:
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=REAL64), | intent(in) | :: | a(:,:) | |||
| real(kind=REAL64), | intent(inout) | :: | b(:,:) | |||
| character(len=1), | intent(in), | optional | :: | uplo | ||
| character(len=1), | intent(in), | optional | :: | trans | ||
| character(len=1), | intent(in), | optional | :: | diag | ||
| integer, | intent(out), | optional | :: | info |
Modern interface for ctrtrs. See also: mfi_trtrs, f77_trtrs. Solves a triangular linear system with multiple right-hand sides:
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| complex(kind=REAL32), | intent(in) | :: | a(:,:) | |||
| complex(kind=REAL32), | intent(inout) | :: | b(:,:) | |||
| character(len=1), | intent(in), | optional | :: | uplo | ||
| character(len=1), | intent(in), | optional | :: | trans | ||
| character(len=1), | intent(in), | optional | :: | diag | ||
| integer, | intent(out), | optional | :: | info |
Modern interface for ztrtrs. See also: mfi_trtrs, f77_trtrs. Solves a triangular linear system with multiple right-hand sides:
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| complex(kind=REAL64), | intent(in) | :: | a(:,:) | |||
| complex(kind=REAL64), | intent(inout) | :: | b(:,:) | |||
| character(len=1), | intent(in), | optional | :: | uplo | ||
| character(len=1), | intent(in), | optional | :: | trans | ||
| character(len=1), | intent(in), | optional | :: | diag | ||
| integer, | intent(out), | optional | :: | info |