sorg2r - generate an m by n real matrix Q with orthonormal columns,
SUBROUTINE SORG2R( M, N, K, A, LDA, TAU, WORK, INFO) INTEGER M, N, K, LDA, INFO REAL A(LDA,*), TAU(*), WORK(*)
SUBROUTINE SORG2R_64( M, N, K, A, LDA, TAU, WORK, INFO) INTEGER*8 M, N, K, LDA, INFO REAL A(LDA,*), TAU(*), WORK(*)
SUBROUTINE ORG2R( [M], [N], [K], A, [LDA], TAU, [WORK], [INFO]) INTEGER :: M, N, K, LDA, INFO REAL, DIMENSION(:) :: TAU, WORK REAL, DIMENSION(:,:) :: A
SUBROUTINE ORG2R_64( [M], [N], [K], A, [LDA], TAU, [WORK], [INFO]) INTEGER(8) :: M, N, K, LDA, INFO REAL, DIMENSION(:) :: TAU, WORK REAL, DIMENSION(:,:) :: A
#include <sunperf.h>
void sorg2r(int m, int n, int k, float *a, int lda, float *tau, int *info);
void sorg2r_64(long m, long n, long k, float *a, long lda, float *tau, long *info);
sorg2r R generates an m by n real matrix Q with orthonormal columns, which is defined as the first n columns of a product of k elementary reflectors of order m
Q = H(1) H(2) . . . H(k)
as returned by SGEQRF.
TAU(i)
must contain the scalar factor of the elementary
reflector H(i), as returned by SGEQRF.
dimension(N)
= 0: successful exit
< 0: if INFO = -i, the i-th argument has an illegal value