|
complib/zgeev(3) -- compute for an N-by-N complex nonsymmetric matrix A, the eigenvalues and, optionally, the left and/or right ei
|
ZGEEV computes for an N-by-N complex nonsymmetric matrix A, the eigenvalues and, optionally, the left and/or right eigenvectors. The right eigenvector v(j) of A satisfies A * v(j) = lambda(j) * v(j) where lambda(j) is its eigenvalue. The left eigenvector u(j) of A satisfies u(j)**H * A = lambda(j) * u(j)**H where u(j)**H denotes the conjugate transpose of u(j). The computed eigenvectors are normalized to have Euclidean norm equal to 1 and largest component real.... |
complib/zgeevx(3) -- compute for an N-by-N complex nonsymmetric matrix A, the eigenvalues and, optionally, the left and/or right ei
|
ZGEEVX computes for an N-by-N complex nonsymmetric matrix A, the eigenvalues and, optionally, the left and/or right eigenvectors. Optionally also, it computes a balancing transformation to improve the conditioning of the eigenvalues and eigenvectors (ILO, IHI, SCALE, and ABNRM), reciprocal condition numbers for the eigenvalues (RCONDE), and reciprocal condition numbers for the right eigenvectors (RCONDV). The right eigenvector v(j) of A satisfies A * v(j) = lambda(j) * v(j) where lambda(j) is it... |
|
complib/zgegs(3) -- compute for a pair of N-by-N complex nonsymmetric matrices A,
|
DGEGS computes for a pair of N-by-N complex nonsymmetric matrices A, B: the generalized eigenvalues (alpha, beta), the complex Schur form (A, B), and optionally left and/or right Schur vectors (VSL and VSR). (If only the generalized eigenvalues are needed, use the driver ZGEGV instead.) A generalized eigenvalue for a pair of matrices (A,B) is, roughly speaking, a scalar w or a ratio alpha/beta = w, such that A - w*B is singular. It is usually represented as the pair (alpha,beta), as there is a r... |
complib/zgegv(3) -- B, the generalized eigenvalues (alpha, beta), and optionally,
|
ZGEGV computes for a pair of N-by-N complex nonsymmetric matrices A and B, the generalized eigenvalues (alpha, beta), and optionally, the left and/or right generalized eigenvectors (VL and VR). A generalized eigenvalue for a pair of matrices (A,B) is, roughly speaking, a scalar w or a ratio alpha/beta = w, such that A - w*B is singular. It is usually represented as the pair (alpha,beta), as there is a reasonable interpretation for beta=0, and even for both being zero. A good beginning reference ... |
complib/zgehd2(3) -- reduce a complex general matrix A to upper Hessenberg form H by a unitary similarity transformation
|
ZGEHD2 reduces a complex general matrix A to upper Hessenberg form H by a unitary similarity transformation: Q' * A * Q = H . |
complib/zgehrd(3) -- reduce a complex general matrix A to upper Hessenberg form H by a unitary similarity transformation
|
ZGEHRD reduces a complex general matrix A to upper Hessenberg form H by a unitary similarity transformation: Q' * A * Q = H . |
complib/zgelq2(3) -- compute an LQ factorization of a complex m by n matrix A
|
ZGELQ2 computes an LQ factorization of a complex m by n matrix A: A = L * Q. |
complib/zgelqf(3) -- compute an LQ factorization of a complex M-by-N matrix A
|
ZGELQF computes an LQ factorization of a complex M-by-N matrix A: A = L * Q. |
complib/zgels(3) -- involving an M-by-N matrix A, or its conjugate-transpose, using a QR or LQ factorization of A
|
ZGELS solves overdetermined or underdetermined complex linear systems involving an M-by-N matrix A, or its conjugate-transpose, using a QR or LQ factorization of A. It is assumed that A has full rank. The following options are provided: 1. If TRANS = 'N' and m >= n: find the least squares solution of an overdetermined system, i.e., solve the least squares problem minimize || B - A*X ||. 2. If TRANS = 'N' and m < n: find the minimum norm solution of an underdetermined system A * X = B. 3. If ... |
complib/zgelss(3) -- compute the minimum norm solution to a complex linear least squares problem
|
ZGELSS computes the minimum norm solution to a complex linear least squares problem: Minimize 2-norm(| b - A*x |). using the singular value decomposition (SVD) of A. A is an M-by-N matrix which may be rank-deficient. Several right hand side vectors b and solution vectors x can be handled in a single call; they are stored as the columns of the M-by-NRHS right hand side matrix B and the N-by-NRHS solution matrix X. The effective rank of A is determined by treating as zero those singular values whi... |
complib/zgelsx(3) -- compute the minimum-norm solution to a complex linear least squares problem
|
ZGELSX computes the minimum-norm solution to a complex linear least squares problem: minimize || A * X - B || using a complete orthogonal factorization of A. A is an M-by-N matrix which may be rank-deficient. Several right hand side vectors b and solution vectors x can be handled in a single call; they are stored as the columns of the M-by-NRHS right hand side matrix B and the N-by-NRHS solution matrix X. The routine first computes a QR factorization with column pivoting: A * P = Q * [ R11 R12 ]... |
complib/zgeql2(3) -- compute a QL factorization of a complex m by n matrix A
|
ZGEQL2 computes a QL factorization of a complex m by n matrix A: A = Q * L. |
complib/zgeqlf(3) -- compute a QL factorization of a complex M-by-N matrix A
|
ZGEQLF computes a QL factorization of a complex M-by-N matrix A: A = Q * L. |
complib/zgeqpf(3) -- compute a QR factorization with column pivoting of a complex Mby-N matrix A
|
ZGEQPF computes a QR factorization with column pivoting of a complex Mby-N matrix A: A*P = Q*R. |
complib/zgeqr2(3) -- compute a QR factorization of a complex m by n matrix A
|
ZGEQR2 computes a QR factorization of a complex m by n matrix A: A = Q * R. |