f77_unm2r Interface

public interface f77_unm2r

Generic old style interface for UNM2R. Supports c, z. See also: mfi_unm2r, cunm2r, zunm2r.


Subroutines

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

Original interface for CUNM2R See also: mfi_unm2r, f77_unm2r. 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(out) :: info

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

Original interface for ZUNM2R See also: mfi_unm2r, f77_unm2r. 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(out) :: info