FE-Project
|
Solve a linear equation Ax=b using a direct solver. More...
Public Member Functions | |
subroutine | linalgebra_solvelineq_b1d (a, b, x) |
Solve a linear equation Ax=b using a direct solver. | |
subroutine | linalgebra_solvelineq_b2d (a, b, x) |
Solve a linear equation Ax=b using a direct solver where b is a matrix. |
Solve a linear equation Ax=b using a direct solver.
Definition at line 33 of file scale_linalgebra.F90.
subroutine scale_linalgebra::linalgebra_solvelineq::linalgebra_solvelineq_b1d | ( | real(rp), dimension(:,:), intent(in) | a, |
real(rp), dimension(:), intent(in) | b, | ||
real(rp), dimension(size(b)), intent(out) | x ) |
Solve a linear equation Ax=b using a direct solver.
[in] | a | Coefficient matrix |
[in] | b | Vector in the right-hand side |
[out] | x | Solution vector of linear equation Ax=b |
Definition at line 107 of file scale_linalgebra.F90.
subroutine scale_linalgebra::linalgebra_solvelineq::linalgebra_solvelineq_b2d | ( | real(rp), dimension(:,:), intent(in) | a, |
real(rp), dimension(:,:), intent(in) | b, | ||
real(rp), dimension(size(b,1),size(b,2)), intent(out) | x ) |
Solve a linear equation Ax=b using a direct solver where b is a matrix.
[in] | a | Coefficient matrix |
[in] | b | Matrix in the right-hand side |
[out] | x | Matrix storing solution of linear equation Ax=b |
Definition at line 140 of file scale_linalgebra.F90.