Retrieves the element at position (row, col) of the original matrix.
See the LAPACK documentation, element $a_{ij}$ of the original matrix is stored
at position $(kd + 1 + i - j, j)$ if uplo = "U" and at position
$(1 + i - j, j)$ if uplo = "L" in the banded storage.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(hermitian_banded_matrix_t), | intent(in) | :: | this |
type instance |
||
| integer, | intent(in) | :: | row |
the row index of the original position |
||
| integer, | intent(in) | :: | col |
the column index of the original position |
the element at the original position (row, col)