GERQ2 - 5.2 English - 68552

AOCL API Guide (68552)

Document ID
68552
Release Date
2025-12-29
Version
5.2 English
template<typename T>
void gerq2(integer *m, integer *n, T *a, integer *lda, T *tau, T *work, integer *info)#

GERQ2 computes the RQ factorization of a general rectangular matrix using an unblocked algorithm.

Purpose:

   GERQ2 computes an RQ factorization of a real m by n matrix A:
   A = R * Q.
Parameters:
  • M[in]

    M is INTEGER

    The number of rows of the matrix A. M >= 0.

  • N[in]

    N is INTEGER

    The number of columns of the matrix A. N >= 0.

  • A[inout]

    A is REAL array, dimension (LDA,N)

    On entry, the m by n matrix A.

    On exit, if m <= n, the upper triangle of the subarray A(1:m,n-m+1:n) contains the m by m upper triangular matrix R; if m >= n, the elements on and above the (m-n)-th subdiagonal contain the m by n upper trapezoidal matrix R; the remaining elements, with the array TAU, represent the orthogonal matrix Q as a product of elementary reflectors (see Further Details).
  • LDA[in]

    LDA is INTEGER

    The leading dimension of the array A. LDA >= fla_max(1,M).

  • TAU[out]

    TAU is REAL array, dimension (min(M,N))

    The scalar factors of the elementary reflectors (see Further Details).

  • WORK[out] WORK is REAL array, dimension (M)

  • INFO[out]

    INFO is INTEGER

    = 0: successful exit

    < 0: if INFO = -i, the i-th argument had an illegal value