linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Solves the LU-factored system (LU) x = y. More...
Public Member Functions | |
subroutine | lusol (n, y, x, alu, jlu, ju) |
Solves the LU-factored system (LU) x = y.
[in] | n | The dimension of the system. |
[in] | y | The N-element right-hand-side vector. |
[out] | x | The N-element solution vector. |
[in] | alu | The LU-factored matrix. |
[in] | jlu | The LU-factored matrix. |
[in] | ju | The LU-factored matrix. |
Definition at line 559 of file sparskit.f90.
subroutine sparskit::lusol::lusol | ( | integer(int32), intent(in) | n, |
real(real64), dimension(n), intent(in) | y, | ||
real(real64), dimension(n), intent(out) | x, | ||
real(real64), dimension(*), intent(in) | alu, | ||
integer(int32), dimension(*), intent(in) | jlu, | ||
integer(int32), dimension(*), intent(in) | ju ) |
Definition at line 559 of file sparskit.f90.