f77_hbmv Interface

public interface f77_hbmv

Generic old style interface for HBMV. Supports c, z. See also: mfi_hbmv, chbmv, zhbmv.


Subroutines

public pure subroutine chbmv(uplo, n, k, alpha, a, lda, x, incx, beta, y, incy)

Original interface for CHBMV See also: mfi_hbmv, f77_hbmv.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
integer, intent(in) :: k
complex(kind=REAL32), intent(in) :: alpha
complex(kind=REAL32), intent(in) :: a(lda,*)
integer, intent(in) :: lda
complex(kind=REAL32), intent(in) :: x(*)
integer, intent(in) :: incx
complex(kind=REAL32), intent(in) :: beta
complex(kind=REAL32), intent(inout) :: y(*)
integer, intent(in) :: incy

public pure subroutine zhbmv(uplo, n, k, alpha, a, lda, x, incx, beta, y, incy)

Original interface for ZHBMV See also: mfi_hbmv, f77_hbmv.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
integer, intent(in) :: k
complex(kind=REAL64), intent(in) :: alpha
complex(kind=REAL64), intent(in) :: a(lda,*)
integer, intent(in) :: lda
complex(kind=REAL64), intent(in) :: x(*)
integer, intent(in) :: incx
complex(kind=REAL64), intent(in) :: beta
complex(kind=REAL64), intent(inout) :: y(*)
integer, intent(in) :: incy