TRMV: performs one of the matrix-vector operations x := A*x, or x := A**T*x, or x := A**H*x, where x is an n element vector and A is an n by n unit, or non-unit, upper or lower triangular matrix.
More...
|
pure subroutine | ctrmv (uplo, trans, diag, n, a, lda, x, incx) |
|
| la_ctrmv |
|
pure subroutine | dtrmv (uplo, trans, diag, n, a, lda, x, incx) |
|
| la_dtrmv |
|
| la_qtrmv |
|
pure subroutine | strmv (uplo, trans, diag, n, a, lda, x, incx) |
|
| la_strmv |
|
| la_wtrmv |
|
pure subroutine | ztrmv (uplo, trans, diag, n, a, lda, x, incx) |
|
| la_ztrmv |
|
TRMV: performs one of the matrix-vector operations x := A*x, or x := A**T*x, or x := A**H*x, where x is an n element vector and A is an n by n unit, or non-unit, upper or lower triangular matrix.
◆ ctrmv()
pure subroutine la_blas::trmv::ctrmv |
( |
character, intent(in) |
uplo, |
|
|
character, intent(in) |
trans, |
|
|
character, intent(in) |
diag, |
|
|
integer(ilp), intent(in) |
n, |
|
|
complex(sp), dimension(lda,*), intent(in) |
a, |
|
|
integer(ilp), intent(in) |
lda, |
|
|
complex(sp), dimension(*), intent(inout) |
x, |
|
|
integer(ilp), intent(in) |
incx |
|
) |
| |
◆ dtrmv()
pure subroutine la_blas::trmv::dtrmv |
( |
character, intent(in) |
uplo, |
|
|
character, intent(in) |
trans, |
|
|
character, intent(in) |
diag, |
|
|
integer(ilp), intent(in) |
n, |
|
|
real(dp), dimension(lda,*), intent(in) |
a, |
|
|
integer(ilp), intent(in) |
lda, |
|
|
real(dp), dimension(*), intent(inout) |
x, |
|
|
integer(ilp), intent(in) |
incx |
|
) |
| |
◆ la_ctrmv()
◆ la_dtrmv()
◆ la_qtrmv()
◆ la_strmv()
◆ la_wtrmv()
◆ la_ztrmv()
◆ strmv()
pure subroutine la_blas::trmv::strmv |
( |
character, intent(in) |
uplo, |
|
|
character, intent(in) |
trans, |
|
|
character, intent(in) |
diag, |
|
|
integer(ilp), intent(in) |
n, |
|
|
real(sp), dimension(lda,*), intent(in) |
a, |
|
|
integer(ilp), intent(in) |
lda, |
|
|
real(sp), dimension(*), intent(inout) |
x, |
|
|
integer(ilp), intent(in) |
incx |
|
) |
| |
◆ ztrmv()
pure subroutine la_blas::trmv::ztrmv |
( |
character, intent(in) |
uplo, |
|
|
character, intent(in) |
trans, |
|
|
character, intent(in) |
diag, |
|
|
integer(ilp), intent(in) |
n, |
|
|
complex(dp), dimension(lda,*), intent(in) |
a, |
|
|
integer(ilp), intent(in) |
lda, |
|
|
complex(dp), dimension(*), intent(inout) |
x, |
|
|
integer(ilp), intent(in) |
incx |
|
) |
| |
The documentation for this interface was generated from the following file: