f77_unmqr Interface

public interface f77_unmqr

Generic old style interface for UNMQR. Supports c, z. See also: mfi_unmqr, cunmqr, zunmqr.


Subroutines

public pure subroutine cunmqr(side, trans, m, n, k, a, lda, tau, c, ldc, work, lwork, info)

Original interface for CUNMQR See also: mfi_unmqr, f77_unmqr. This routine overwrites the general complex matrix with

                 SIDE = 'L'     SIDE = 'R'
 TRANS = 'N':      Q * C          C * Q
 TRANS = 'C':      Q**H * C       C * Q**H

where Q is a complex unitary matrix defined as the product of k elementary reflectors

as returned by cgeqrf. is of order if SIDE = 'L' and of order if SIDE = 'R'.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: side
character(len=1), intent(in) :: trans
integer, intent(in) :: m
integer, intent(in) :: n
integer, intent(in) :: k
complex(kind=REAL32), intent(inout) :: a(lda,*)
integer, intent(in) :: lda
complex(kind=REAL32), intent(in) :: tau(*)
complex(kind=REAL32), intent(inout) :: c(ldc,*)
integer, intent(in) :: ldc
complex(kind=REAL32), intent(out) :: work(*)
integer, intent(in) :: lwork
integer, intent(out) :: info

public pure subroutine zunmqr(side, trans, m, n, k, a, lda, tau, c, ldc, work, lwork, info)

Original interface for ZUNMQR See also: mfi_unmqr, f77_unmqr. This routine overwrites the general complex matrix with

                 SIDE = 'L'     SIDE = 'R'
 TRANS = 'N':      Q * C          C * Q
 TRANS = 'C':      Q**H * C       C * Q**H

where Q is a complex unitary matrix defined as the product of k elementary reflectors

as returned by zgeqrf. is of order if SIDE = 'L' and of order if SIDE = 'R'.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: side
character(len=1), intent(in) :: trans
integer, intent(in) :: m
integer, intent(in) :: n
integer, intent(in) :: k
complex(kind=REAL64), intent(inout) :: a(lda,*)
integer, intent(in) :: lda
complex(kind=REAL64), intent(in) :: tau(*)
complex(kind=REAL64), intent(inout) :: c(ldc,*)
integer, intent(in) :: ldc
complex(kind=REAL64), intent(out) :: work(*)
integer, intent(in) :: lwork
integer, intent(out) :: info