linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Converts and MSR matrix to a CSR matrix. More...
Public Member Functions | |
subroutine | msrcsr (n, a, ja, ao, jao, iao, wk, iwk) |
Converts and MSR matrix to a CSR matrix.
[in] | n | The row dimension of the matrix. |
[in] | a | An NNZ-element array containing the non-zero elements for the MSR matrix. |
[in] | ja | An NNZ-element index tracking array for the MSR matrix. |
[out] | ao | The non-zero elements of matrix A. |
[out] | jao | The column indices of matrix A. |
[out] | iao | The index in A where the requested row starts. |
[out] | wk | An N-element workspace array. |
[out] | iwk | An N+1 element workspace array. |
Definition at line 191 of file sparskit.f90.
subroutine sparskit::msrcsr::msrcsr | ( | integer(int32), intent(in) | n, |
real(real64), dimension(*), intent(in) | a, | ||
integer(int32), dimension(*), intent(in) | ja, | ||
real(real64), dimension(*), intent(out) | ao, | ||
integer(int32), dimension(*), intent(out) | jao, | ||
integer(int32), dimension(n+1), intent(out) | iao, | ||
real(real64), dimension(n), intent(out) | wk, | ||
integer(int32), dimension(n+1), intent(out) | iwk ) |
Definition at line 191 of file sparskit.f90.