Calculates the matrix-vector product of a general complex banded matrix and a complex vector. Uses the level 2 BLAS routine zgbmv.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(banded_matrix_t), | intent(in) | :: | bandmatrix |
the banded matrix |
||
| complex(kind=dp), | intent(in) | :: | vector(bandmatrix%n) |
the vector |
the resulting matrix-vector product
Calculates the matrix-vector product of a general complex banded matrix and a complex vector. Uses the level 2 BLAS routine zgbmv.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(banded_matrix_t), | intent(in) | :: | bandmatrix |
the banded matrix |
||
| complex(kind=dp), | intent(in) | :: | vector(bandmatrix%n) |
the vector |
the resulting matrix-vector product
Copy banded matrix B into A
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(banded_matrix_t), | intent(inout) | :: | A |
this banded matrix will be overwritten |
||
| type(banded_matrix_t), | intent(in) | :: | B |
this banded matrix will be copied into A |
Multiply a constant times a banded matrix plus another banded matrix; A = A + alpha*B
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(banded_matrix_t), | intent(inout) | :: | A | |||
| type(banded_matrix_t), | intent(in) | :: | B | |||
| complex(kind=dp), | intent(in) | :: | alpha |