Visible to Intel only — GUID: GUID-CCA79F09-F5CA-44ED-A64D-9F68CD293D97
ZGESVD Example
For a detailed description and reference information on this function, please visit:
?gesvd function in Intel® oneAPI Math Kernel Library Developer Reference - C
?gesvd function in Intel® oneAPI Math Kernel Library Developer Reference - Fortran
The routine computes the singular value decomposition (SVD) of a rectangular complex matrix A, optionally the left and/or right singular vectors.
The SVD is written as:
A = U*SIGMA*VH
where
A is a complex m-by-n matrix.
SIGMA is an m-by-n matrix which is zero except for its min(m,n) diagonal elements.
U is an m-by-m unitary matrix.
VH (V conjugate transposed) is an n-by-n unitary matrix.
The diagonal elements of SIGMA are the singular values of A; they are real and non-negative, and are returned in descending order. The first min(m,n) columns of U and V are the left and right singular vectors of A.
The routine returns VH, not V.
Fortran-77 Interface
C Interface
Please refer to the Matrix Layout section of the C Interface Conventions for the description of Row Major (C default) and Column Major (Fortran default).