Definition at line 195 of file lalg_adv.F90.
|
subroutine | dlinsyssolve (n, nrhs, a, b, x) |
| compute the solution to a real system of linear equations A*X = B, where A is an N-by-N matrix and X and B are N-by-NRHS matrices. More...
|
|
subroutine | zlinsyssolve (n, nrhs, a, b, x) |
| compute the solution to a complex system of linear equations A*X = B, where A is an N-by-N matrix and X and B are N-by-NRHS matrices. More...
|
|
◆ dlinsyssolve()
subroutine lalg_adv_oct_m::lalg_linsyssolve::dlinsyssolve |
( |
integer, intent(in) |
n, |
|
|
integer, intent(in) |
nrhs, |
|
|
real(real64), dimension(:,:), intent(inout), contiguous |
a, |
|
|
real(real64), dimension(:,:), intent(inout), contiguous |
b, |
|
|
real(real64), dimension(:,:), intent(out), contiguous |
x |
|
) |
| |
|
private |
compute the solution to a real system of linear equations A*X = B, where A is an N-by-N matrix and X and B are N-by-NRHS matrices.
- Parameters
-
[in,out] | a | (n, n) |
[in,out] | b | (n, nrhs) |
[out] | x | (n, nrhs) |
Definition at line 3003 of file lalg_adv.F90.
◆ zlinsyssolve()
subroutine lalg_adv_oct_m::lalg_linsyssolve::zlinsyssolve |
( |
integer, intent(in) |
n, |
|
|
integer, intent(in) |
nrhs, |
|
|
complex(real64), dimension(:,:), intent(inout), contiguous |
a, |
|
|
complex(real64), dimension(:,:), intent(inout), contiguous |
b, |
|
|
complex(real64), dimension(:,:), intent(out), contiguous |
x |
|
) |
| |
|
private |
compute the solution to a complex system of linear equations A*X = B, where A is an N-by-N matrix and X and B are N-by-NRHS matrices.
- Parameters
-
[in,out] | a | (n, n) |
[in,out] | b | (n, nrhs) |
[out] | x | (n, nrhs) |
Definition at line 1568 of file lalg_adv.F90.
The documentation for this interface was generated from the following file: