Linear Algebra¶
This chapter describes functions for solving linear systems. The
library provides linear algebra operations which operate directly on
the gsl_vector and gsl_matrix objects. These routines
use the standard algorithms from Golub & Van Loan’s Matrix
Computations with Level-1 and Level-2 BLAS calls for efficiency.
The functions described in this chapter are declared in the header file
gsl_linalg.h.
LU Decomposition¶
A general N-by-N square matrix A has an LU decomposition into upper and lower triangular matrices,
P A = L U
where P is a permutation matrix, L is unit lower triangular matrix and U is upper triangular matrix. For square matrices this decomposition can be used to convert the linear system A x = b into a pair of triangular systems (L y = P b, U x = y), which can be solved by forward and back-substitution. Note that the LU decomposition is valid for singular matrices.
-
int
gsl_linalg_LU_decomp(gsl_matrix * A, gsl_permutation * p, int * signum)¶ -
int
gsl_linalg_complex_LU_decomp(gsl_matrix_complex * A, gsl_permutation * p, int * signum)¶ These functions factorize the square matrix
Ainto the LU decomposition PA = LU. On output the diagonal and upper triangular part of the input matrixAcontain the matrix U. The lower triangular part of the input matrix (excluding the diagonal) contains L. The diagonal elements of L are unity, and are not stored.The permutation matrix P is encoded in the permutation
pon output. The j-th column of the matrix P is given by the k-th column of the identity matrix, where k = p_j the j-th element of the permutation vector. The sign of the permutation is given bysignum. It has the value (-1)^n, where n is the number of interchanges in the permutation.The algorithm used in the decomposition is Gaussian Elimination with partial pivoting (Golub & Van Loan, Matrix Computations, Algorithm 3.4.1).
-
int
gsl_linalg_LU_solve(const gsl_matrix * LU, const gsl_permutation * p, const gsl_vector * b, gsl_vector * x)¶ -
int
gsl_linalg_complex_LU_solve(const gsl_matrix_complex * LU, const gsl_permutation * p, const gsl_vector_complex * b, gsl_vector_complex * x)¶ These functions solve the square system A x = b using the LU decomposition of A into (
LU,p) given bygsl_linalg_LU_decomp()orgsl_linalg_complex_LU_decomp()as input.
-
int
gsl_linalg_LU_svx(const gsl_matrix * LU, const gsl_permutation * p, gsl_vector * x)¶ -
int
gsl_linalg_complex_LU_svx(const gsl_matrix_complex * LU, const gsl_permutation * p, gsl_vector_complex * x)¶ These functions solve the square system A x = b in-place using the precomputed LU decomposition of A into (
LU,p). On inputxshould contain the right-hand side b, which is replaced by the solution on output.
-
int
gsl_linalg_LU_refine(const gsl_matrix * A, const gsl_matrix * LU, const gsl_permutation * p, const gsl_vector * b, gsl_vector * x, gsl_vector * work)¶ -
int
gsl_linalg_complex_LU_refine(const gsl_matrix_complex * A, const gsl_matrix_complex * LU, const gsl_permutation * p, const gsl_vector_complex * b, gsl_vector_complex * x, gsl_vector_complex * work)¶ These functions apply an iterative improvement to
x, the solution of A x = b, from the precomputed LU decomposition of A into (LU,p). Additional workspace of lengthNis required inwork.
-
int
gsl_linalg_LU_invert(const gsl_matrix * LU, const gsl_permutation * p, gsl_matrix * inverse)¶ -
int
gsl_linalg_complex_LU_invert(const gsl_matrix_complex * LU, const gsl_permutation * p, gsl_matrix_complex * inverse)¶ These functions compute the inverse of a matrix A from its LU decomposition (
LU,p), storing the result in the matrixinverse. The inverse is computed by solving the system A x = b for each column of the identity matrix. It is preferable to avoid direct use of the inverse whenever possible, as the linear solver functions can obtain the same result more efficiently and reliably (consult any introductory textbook on numerical linear algebra for details).
-
double
gsl_linalg_LU_det(gsl_matrix * LU, int signum)¶ -
gsl_complex
gsl_linalg_complex_LU_det(gsl_matrix_complex * LU, int signum)¶ These functions compute the determinant of a matrix A from its LU decomposition,
LU. The determinant is computed as the product of the diagonal elements of U and the sign of the row permutationsignum.
-
double
gsl_linalg_LU_lndet(gsl_matrix * LU)¶ -
double
gsl_linalg_complex_LU_lndet(gsl_matrix_complex * LU)¶ These functions compute the logarithm of the absolute value of the determinant of a matrix A, \ln|\det(A)|, from its LU decomposition,
LU. This function may be useful if the direct computation of the determinant would overflow or underflow.
-
int
gsl_linalg_LU_sgndet(gsl_matrix * LU, int signum)¶ -
gsl_complex
gsl_linalg_complex_LU_sgndet(gsl_matrix_complex * LU, int signum)¶ These functions compute the sign or phase factor of the determinant of a matrix A, \det(A)/|\det(A)|, from its LU decomposition,
LU.
QR Decomposition¶
A general rectangular M-by-N matrix A has a QR decomposition into the product of an orthogonal M-by-M square matrix Q (where Q^T Q = I) and an M-by-N right-triangular matrix R,
A = Q R
This decomposition can be used to convert the linear system A x = b into the triangular system R x = Q^T b, which can be solved by back-substitution. Another use of the QR decomposition is to compute an orthonormal basis for a set of vectors. The first N columns of Q form an orthonormal basis for the range of A, ran(A), when A has full column rank.
-
int
gsl_linalg_QR_decomp(gsl_matrix * A, gsl_vector * tau)¶ This function factorizes the M-by-N matrix
Ainto the QR decomposition A = Q R. On output the diagonal and upper triangular part of the input matrix contain the matrix R. The vectortauand the columns of the lower triangular part of the matrixAcontain the Householder coefficients and Householder vectors which encode the orthogonal matrixQ. The vectortaumust be of length k=\min(M,N). The matrix Q is related to these components by, Q = Q_k ... Q_2 Q_1 where Q_i = I - \tau_i v_i v_i^T and v_i is the Householder vector v_i = (0,...,1,A(i+1,i),A(i+2,i),...,A(m,i)). This is the same storage scheme as used by LAPACK.The algorithm used to perform the decomposition is Householder QR (Golub & Van Loan, “Matrix Computations”, Algorithm 5.2.1).
-
int
gsl_linalg_QR_solve(const gsl_matrix * QR, const gsl_vector * tau, const gsl_vector * b, gsl_vector * x)¶ This function solves the square system A x = b using the QR decomposition of A held in (
QR,tau) which must have been computed previously withgsl_linalg_QR_decomp(). The least-squares solution for rectangular systems can be found usinggsl_linalg_QR_lssolve().
-
int
gsl_linalg_QR_svx(const gsl_matrix * QR, const gsl_vector * tau, gsl_vector * x)¶ This function solves the square system A x = b in-place using the QR decomposition of A held in (
QR,tau) which must have been computed previously bygsl_linalg_QR_decomp(). On inputxshould contain the right-hand side b, which is replaced by the solution on output.
-
int
gsl_linalg_QR_lssolve(const gsl_matrix * QR, const gsl_vector * tau, const gsl_vector * b, gsl_vector * x, gsl_vector * residual)¶ This function finds the least squares solution to the overdetermined system A x = b where the matrix
Ahas more rows than columns. The least squares solution minimizes the Euclidean norm of the residual, ||Ax - b||.The routine requires as input the QR decomposition of A into (QR,tau) given bygsl_linalg_QR_decomp(). The solution is returned inx. The residual is computed as a by-product and stored inresidual.
-
int
gsl_linalg_QR_QTvec(const gsl_matrix * QR, const gsl_vector * tau, gsl_vector * v)¶ This function applies the matrix Q^T encoded in the decomposition (
QR,tau) to the vectorv, storing the result Q^T v inv. The matrix multiplication is carried out directly using the encoding of the Householder vectors without needing to form the full matrix Q^T.
-
int
gsl_linalg_QR_Qvec(const gsl_matrix * QR, const gsl_vector * tau, gsl_vector * v)¶ This function applies the matrix Q encoded in the decomposition (
QR,tau) to the vectorv, storing the result Q v inv. The matrix multiplication is carried out directly using the encoding of the Householder vectors without needing to form the full matrix Q.
-
int
gsl_linalg_QR_QTmat(const gsl_matrix * QR, const gsl_vector * tau, gsl_matrix * A)¶ This function applies the matrix Q^T encoded in the decomposition (
QR,tau) to the matrixA, storing the result Q^T A inA. The matrix multiplication is carried out directly using the encoding of the Householder vectors without needing to form the full matrix Q^T.
-
int
gsl_linalg_QR_Rsolve(const gsl_matrix * QR, const gsl_vector * b, gsl_vector * x)¶ This function solves the triangular system R x = b for
x. It may be useful if the product b' = Q^T b has already been computed usinggsl_linalg_QR_QTvec().
-
int
gsl_linalg_QR_Rsvx(const gsl_matrix * QR, gsl_vector * x)¶ This function solves the triangular system R x = b for
xin-place. On inputxshould contain the right-hand side b and is replaced by the solution on output. This function may be useful if the product b' = Q^T b has already been computed usinggsl_linalg_QR_QTvec().
-
int
gsl_linalg_QR_unpack(const gsl_matrix * QR, const gsl_vector * tau, gsl_matrix * Q, gsl_matrix * R)¶ This function unpacks the encoded QR decomposition (
QR,tau) into the matricesQandR, whereQis M-by-M andRis M-by-N.
-
int
gsl_linalg_QR_QRsolve(gsl_matrix * Q, gsl_matrix * R, const gsl_vector * b, gsl_vector * x)¶ This function solves the system R x = Q^T b for
x. It can be used when the QR decomposition of a matrix is available in unpacked form as (Q,R).
-
int
gsl_linalg_QR_update(gsl_matrix * Q, gsl_matrix * R, gsl_vector * w, const gsl_vector * v)¶ This function performs a rank-1 update w v^T of the QR decomposition (
Q,R). The update is given by Q'R' = Q (R + w v^T) where the output matrices Q and R are also orthogonal and right triangular. Note thatwis destroyed by the update.
-
int
gsl_linalg_R_solve(const gsl_matrix * R, const gsl_vector * b, gsl_vector * x)¶ This function solves the triangular system R x = b for the N-by-N matrix
R.
-
int
gsl_linalg_R_svx(const gsl_matrix * R, gsl_vector * x)¶ This function solves the triangular system R x = b in-place. On input
xshould contain the right-hand side b, which is replaced by the solution on output.
QR Decomposition with Column Pivoting¶
The QR decomposition of an M-by-N matrix A can be extended to the rank deficient case by introducing a column permutation P,
A P = Q R
The first r columns of Q form an orthonormal basis for the range of A for a matrix with column rank r. This decomposition can also be used to convert the linear system A x = b into the triangular system R y = Q^T b, x = P y, which can be solved by back-substitution and permutation. We denote the QR decomposition with column pivoting by QRP^T since A = Q R P^T. When A is rank deficient with r = {\rm rank}(A), the matrix R can be partitioned as
R = \left( \begin{matrix} R_{11} & R_{12} \\ 0 & R_{22} \end{matrix} \right) \approx \left( \begin{matrix} R_{11} & R_{12} \\ 0 & 0 \end{matrix} \right)
where R_{11} is r-by-r and nonsingular. In this case, a basic least squares solution for the overdetermined system A x = b can be obtained as
x = P \left( \begin{matrix} R_{11}^{-1} c_1 \\ 0 \end{matrix} \right)
where c_1 consists of the first r elements of Q^T b. This basic solution is not guaranteed to be the minimum norm solution unless R_{12} = 0 (see Complete Orthogonal Decomposition).
-
int
gsl_linalg_QRPT_decomp(gsl_matrix * A, gsl_vector * tau, gsl_permutation * p, int * signum, gsl_vector * norm)¶ This function factorizes the M-by-N matrix
Ainto the QRP^T decomposition A = Q R P^T. On output the diagonal and upper triangular part of the input matrix contain the matrix R. The permutation matrix P is stored in the permutationp. The sign of the permutation is given bysignum. It has the value (-1)^n, where n is the number of interchanges in the permutation. The vectortauand the columns of the lower triangular part of the matrixAcontain the Householder coefficients and vectors which encode the orthogonal matrixQ. The vectortaumust be of length k=\min(M,N). The matrix Q is related to these components by, Q = Q_k ... Q_2 Q_1 where Q_i = I - \tau_i v_i v_i^T and v_i is the Householder vectorv_i = (0,...,1,A(i+1,i),A(i+2,i),...,A(m,i))
This is the same storage scheme as used by LAPACK. The vector
normis a workspace of lengthNused for column pivoting.The algorithm used to perform the decomposition is Householder QR with column pivoting (Golub & Van Loan, “Matrix Computations”, Algorithm 5.4.1).
-
int
gsl_linalg_QRPT_decomp2(const gsl_matrix * A, gsl_matrix * q, gsl_matrix * r, gsl_vector * tau, gsl_permutation * p, int * signum, gsl_vector * norm)¶ This function factorizes the matrix
Ainto the decomposition A = Q R P^T without modifyingAitself and storing the output in the separate matricesqandr.
-
int
gsl_linalg_QRPT_solve(const gsl_matrix * QR, const gsl_vector * tau, const gsl_permutation * p, const gsl_vector * b, gsl_vector * x)¶ This function solves the square system A x = b using the QRP^T decomposition of A held in (
QR,tau,p) which must have been computed previously bygsl_linalg_QRPT_decomp().
-
int
gsl_linalg_QRPT_svx(const gsl_matrix * QR, const gsl_vector * tau, const gsl_permutation * p, gsl_vector * x)¶ This function solves the square system A x = b in-place using the QRP^T decomposition of A held in (
QR,tau,p). On inputxshould contain the right-hand side b, which is replaced by the solution on output.
-
int
gsl_linalg_QRPT_lssolve(const gsl_matrix * QR, const gsl_vector * tau, const gsl_permutation * p, const gsl_vector * b, gsl_vector * x, gsl_vector * residual)¶ This function finds the least squares solution to the overdetermined system A x = b where the matrix
Ahas more rows than columns and is assumed to have full rank. The least squares solution minimizes the Euclidean norm of the residual, ||b - A x||. The routine requires as input the QR decomposition of A into (QR,tau,p) given bygsl_linalg_QRPT_decomp(). The solution is returned inx. The residual is computed as a by-product and stored inresidual. For rank deficient matrices,gsl_linalg_QRPT_lssolve2()should be used instead.
-
int
gsl_linalg_QRPT_lssolve2(const gsl_matrix * QR, const gsl_vector * tau, const gsl_permutation * p, const gsl_vector * b, const size_t rank, gsl_vector * x, gsl_vector * residual)¶ This function finds the least squares solution to the overdetermined system A x = b where the matrix
Ahas more rows than columns and has rank given by the inputrank. If the user does not know the rank of A, the routinegsl_linalg_QRPT_rank()can be called to estimate it. The least squares solution is the so-called “basic” solution discussed above and may not be the minimum norm solution. The routine requires as input the QR decomposition of A into (QR,tau,p) given bygsl_linalg_QRPT_decomp(). The solution is returned inx. The residual is computed as a by-product and stored inresidual.
-
int
gsl_linalg_QRPT_QRsolve(const gsl_matrix * Q, const gsl_matrix * R, const gsl_permutation * p, const gsl_vector * b, gsl_vector * x)¶ This function solves the square system R P^T x = Q^T b for
x. It can be used when the QR decomposition of a matrix is available in unpacked form as (Q,R).
-
int
gsl_linalg_QRPT_update(gsl_matrix * Q, gsl_matrix * R, const gsl_permutation * p, gsl_vector * w, const gsl_vector * v)¶ This function performs a rank-1 update w v^T of the QRP^T decomposition (
Q,R,p). The update is given by Q'R' = Q (R + w v^T P) where the output matrices Q' and R' are also orthogonal and right triangular. Note thatwis destroyed by the update. The permutationpis not changed.
-
int
gsl_linalg_QRPT_Rsolve(const gsl_matrix * QR, const gsl_permutation * p, const gsl_vector * b, gsl_vector * x)¶ This function solves the triangular system R P^T x = b for the N-by-N matrix R contained in
QR.
-
int
gsl_linalg_QRPT_Rsvx(const gsl_matrix * QR, const gsl_permutation * p, gsl_vector * x)¶ This function solves the triangular system R P^T x = b in-place for the N-by-N matrix R contained in
QR. On inputxshould contain the right-hand side b, which is replaced by the solution on output.
-
size_t
gsl_linalg_QRPT_rank(const gsl_matrix * QR, const double tol)¶ This function estimates the rank of the triangular matrix R contained in
QR. The algorithm simply counts the number of diagonal elements of R whose absolute value is greater than the specified tolerancetol. If the inputtolis negative, a default value of 20 (M + N) eps(max(|diag(R)|)) is used.
-
int
gsl_linalg_QRPT_rcond(const gsl_matrix * QR, double * rcond, gsl_vector * work)¶ This function estimates the reciprocal condition number (using the 1-norm) of the R factor, stored in the upper triangle of
QR. The reciprocal condition number estimate, defined as 1 / (||R||_1 \cdot ||R^{-1}||_1), is stored inrcond. Additional workspace of size 3 N is required inwork.
Complete Orthogonal Decomposition¶
The complete orthogonal decomposition of a M-by-N matrix A is a generalization of the QR decomposition with column pivoting, given by
A P = Q \left( \begin{matrix} R_{11} & 0 \\ 0 & 0 \end{matrix} \right) Z^T
where P is a N-by-N permutation matrix, Q is M-by-M orthogonal, R_{11} is r-by-r upper triangular, with r = {\rm rank}(A), and Z is N-by-N orthogonal. If A has full rank, then R_{11} = R, Z = I and this reduces to the QR decomposition with column pivoting.
For a rank deficient least squares problem, \min_x{|| b - Ax||^2}, the solution vector x is not unique. However if we further require that ||x||^2 is minimized, then the complete orthogonal decomposition gives us the ability to compute the unique minimum norm solution, which is given by
x = P Z \left( \begin{matrix} R_{11}^{-1} c_1 \\ 0 \end{matrix} \right)
and the vector c_1 is the first r elements of Q^T b.
The COD also enables a straightforward solution of regularized least squares problems in Tikhonov standard form, written as
\min_x ||b - A x||^2 + \lambda^2 ||x||^2
where \lambda > 0 is a regularization parameter which represents a tradeoff between minimizing the residual norm ||b - A x|| and the solution norm ||x||. For this system, the solution is given by
x = P Z \left( \begin{matrix} y_1 \\ 0 \end{matrix} \right)
where y_1 is a vector of length r which is found by solving
\left( \begin{matrix} R_{11} \\ \lambda I_r \end{matrix} \right) y_1 = \left( \begin{matrix} c_1 \\ 0 \end{matrix} \right)
and c_1 is defined above. The equation above can be solved efficiently for different values of \lambda using QR factorizations of the left hand side matrix.
-
int
gsl_linalg_COD_decomp(gsl_matrix * A, gsl_vector * tau_Q, gsl_vector * tau_Z, gsl_permutation * p, size_t * rank, gsl_vector * work)¶ -
int
gsl_linalg_COD_decomp_e(gsl_matrix * A, gsl_vector * tau_Q, gsl_vector * tau_Z, gsl_permutation * p, double tol, size_t * rank, gsl_vector * work)¶ These functions factor the M-by-N matrix
Ainto the decomposition A = Q R Z P^T. The rank ofAis computed as the number of diagonal elements of R greater than the tolerancetoland output inrank. Iftolis not specified, a default value is used (seegsl_linalg_QRPT_rank()). On output, the permutation matrix P is stored inp. The matrix R_{11} is stored in the upperrank-by-rankblock ofA. The matrices Q and Z are encoded in packed storage inAon output. The vectorstau_Qandtau_Zcontain the Householder scalars corresponding to the matrices Q and Z respectively and must be of length k = \min(M,N). The vectorworkis additional workspace of length N.
-
int
gsl_linalg_COD_lssolve(const gsl_matrix * QRZT, const gsl_vector * tau_Q, const gsl_vector * tau_Z, const gsl_permutation * p, const size_t rank, const gsl_vector * b, gsl_vector * x, gsl_vector * residual)¶ This function finds the unique minimum norm least squares solution to the overdetermined system A x = b where the matrix
Ahas more rows than columns. The least squares solution minimizes the Euclidean norm of the residual, ||b - A x|| as well as the norm of the solution ||x||. The routine requires as input the QRZT decomposition of A into (QRZT,tau_Q,tau_Z,p,rank) given bygsl_linalg_COD_decomp(). The solution is returned inx. The residual, b - Ax, is computed as a by-product and stored inresidual.
-
int
gsl_linalg_COD_lssolve2(const double lambda, const gsl_matrix * QRZT, const gsl_vector * tau_Q, const gsl_vector * tau_Z, const gsl_permutation * p, const size_t rank, const gsl_vector * b, gsl_vector * x, gsl_vector * residual, gsl_matrix * S, gsl_vector * work)¶ This function finds the solution to the regularized least squares problem in Tikhonov standard form, \min_x ||b - Ax||^2 + \lambda^2 ||x||^2. The routine requires as input the QRZT decomposition of A into (
QRZT,tau_Q,tau_Z,p,rank) given bygsl_linalg_COD_decomp(). The parameter \lambda is supplied inlambda. The solution is returned inx. The residual, b - Ax, is stored inresidualon output.Sis additional workspace of sizerank-by-rank.workis additional workspace of lengthrank.
-
int
gsl_linalg_COD_unpack(const gsl_matrix * QRZT, const gsl_vector * tau_Q, const gsl_vector * tau_Z, const size_t rank, gsl_matrix * Q, gsl_matrix * R, gsl_matrix * Z)¶ This function unpacks the encoded QRZT decomposition (
QRZT,tau_Q,tau_Z,rank) into the matricesQ,R, andZ, whereQis M-by-M,Ris M-by-N, andZis N-by-N.
-
int
gsl_linalg_COD_matZ(const gsl_matrix * QRZT, const gsl_vector * tau_Z, const size_t rank, gsl_matrix * A, gsl_vector * work)¶ This function multiplies the input matrix
Aon the right byZ, A' = A Z using the encoded QRZT decomposition (QRZT,tau_Z,rank).Amust have N columns but may have any number of rows. Additional workspace of length M is provided inwork.
Singular Value Decomposition¶
A general rectangular M-by-N matrix A has a singular value decomposition (SVD) into the product of an M-by-N orthogonal matrix U, an N-by-N diagonal matrix of singular values S and the transpose of an N-by-N orthogonal square matrix V,
A = U S V^T
The singular values \sigma_i = S_{ii} are all non-negative and are generally chosen to form a non-increasing sequence
\sigma_1 \ge \sigma_2 \ge ... \ge \sigma_N \ge 0
The singular value decomposition of a matrix has many practical uses. The condition number of the matrix is given by the ratio of the largest singular value to the smallest singular value. The presence of a zero singular value indicates that the matrix is singular. The number of non-zero singular values indicates the rank of the matrix. In practice singular value decomposition of a rank-deficient matrix will not produce exact zeroes for singular values, due to finite numerical precision. Small singular values should be edited by choosing a suitable tolerance.
For a rank-deficient matrix, the null space of A is given by the columns of V corresponding to the zero singular values. Similarly, the range of A is given by columns of U corresponding to the non-zero singular values.
Note that the routines here compute the “thin” version of the SVD with U as M-by-N orthogonal matrix. This allows in-place computation and is the most commonly-used form in practice. Mathematically, the “full” SVD is defined with U as an M-by-M orthogonal matrix and S as an M-by-N diagonal matrix (with additional rows of zeros).
-
int
gsl_linalg_SV_decomp(gsl_matrix * A, gsl_matrix * V, gsl_vector * S, gsl_vector * work)¶ This function factorizes the M-by-N matrix
Ainto the singular value decomposition A = U S V^T for M \ge N. On output the matrixAis replaced by U. The diagonal elements of the singular value matrix S are stored in the vectorS. The singular values are non-negative and form a non-increasing sequence from S_1 to S_N. The matrixVcontains the elements of V in untransposed form. To form the product U S V^T it is necessary to take the transpose ofV. A workspace of lengthNis required inwork.This routine uses the Golub-Reinsch SVD algorithm.
-
int
gsl_linalg_SV_decomp_mod(gsl_matrix * A, gsl_matrix * X, gsl_matrix * V, gsl_vector * S, gsl_vector * work)¶ This function computes the SVD using the modified Golub-Reinsch algorithm, which is faster for M \gg N. It requires the vector
workof lengthNand the N-by-N matrixXas additional working space.
-
int
gsl_linalg_SV_decomp_jacobi(gsl_matrix * A, gsl_matrix * V, gsl_vector * S)¶ This function computes the SVD of the M-by-N matrix
Ausing one-sided Jacobi orthogonalization for M \ge N. The Jacobi method can compute singular values to higher relative accuracy than Golub-Reinsch algorithms (see references for details).
-
int
gsl_linalg_SV_solve(const gsl_matrix * U, const gsl_matrix * V, const gsl_vector * S, const gsl_vector * b, gsl_vector * x)¶ This function solves the system A x = b using the singular value decomposition (
U,S,V) of A which must have been computed previously withgsl_linalg_SV_decomp().Only non-zero singular values are used in computing the solution. The parts of the solution corresponding to singular values of zero are ignored. Other singular values can be edited out by setting them to zero before calling this function.
In the over-determined case where
Ahas more rows than columns the system is solved in the least squares sense, returning the solutionxwhich minimizes ||A x - b||_2.
-
int
gsl_linalg_SV_leverage(const gsl_matrix * U, gsl_vector * h)¶ This function computes the statistical leverage values h_i of a matrix A using its singular value decomposition (
U,S,V) previously computed withgsl_linalg_SV_decomp(). h_i are the diagonal values of the matrix A (A^T A)^{-1} A^T and depend only on the matrixUwhich is the input to this function.
Cholesky Decomposition¶
A symmetric, positive definite square matrix A has a Cholesky decomposition into a product of a lower triangular matrix L and its transpose L^T,
A = L L^T
This is sometimes referred to as taking the square-root of a matrix. The Cholesky decomposition can only be carried out when all the eigenvalues of the matrix are positive. This decomposition can be used to convert the linear system A x = b into a pair of triangular systems (L y = b, L^T x = y), which can be solved by forward and back-substitution.
If the matrix A is near singular, it is sometimes possible to reduce the condition number and recover a more accurate solution vector x by scaling as
\left( S A S \right) \left( S^{-1} x \right) = S b
where S is a diagonal matrix whose elements are given by S_{ii} = 1/\sqrt{A_{ii}}. This scaling is also known as Jacobi preconditioning. There are routines below to solve both the scaled and unscaled systems.
-
int
gsl_linalg_cholesky_decomp1(gsl_matrix * A)¶ -
int
gsl_linalg_complex_cholesky_decomp(gsl_matrix_complex * A)¶ These functions factorize the symmetric, positive-definite square matrix
Ainto the Cholesky decomposition A = L L^T (or A = L L^{\dagger} for the complex case). On input, the values from the diagonal and lower-triangular part of the matrixAare used (the upper triangular part is ignored). On output the diagonal and lower triangular part of the input matrixAcontain the matrix L, while the upper triangular part is unmodified. If the matrix is not positive-definite then the decomposition will fail, returning the error codeGSL_EDOM.When testing whether a matrix is positive-definite, disable the error handler first to avoid triggering an error.
-
int
gsl_linalg_cholesky_decomp(gsl_matrix * A)¶ This function is now deprecated and is provided only for backward compatibility.
-
int
gsl_linalg_cholesky_solve(const gsl_matrix * cholesky, const gsl_vector * b, gsl_vector * x)¶ -
int
gsl_linalg_complex_cholesky_solve(const gsl_matrix_complex * cholesky, const gsl_vector_complex * b, gsl_vector_complex * x)¶ These functions solve the system A x = b using the Cholesky decomposition of A held in the matrix
choleskywhich must have been previously computed bygsl_linalg_cholesky_decomp()orgsl_linalg_complex_cholesky_decomp().
-
int
gsl_linalg_cholesky_svx(const gsl_matrix * cholesky, gsl_vector * x)¶ -
int
gsl_linalg_complex_cholesky_svx(const gsl_matrix_complex * cholesky, gsl_vector_complex * x)¶ These functions solve the system A x = b in-place using the Cholesky decomposition of A held in the matrix
choleskywhich must have been previously computed bygsl_linalg_cholesky_decomp()orgsl_linalg_complex_cholesky_decomp(). On inputxshould contain the right-hand side b, which is replaced by the solution on output.
-
int
gsl_linalg_cholesky_invert(gsl_matrix * cholesky)¶ -
int
gsl_linalg_complex_cholesky_invert(gsl_matrix_complex * cholesky)¶ These functions compute the inverse of a matrix from its Cholesky decomposition
cholesky, which must have been previously computed bygsl_linalg_cholesky_decomp()orgsl_linalg_complex_cholesky_decomp(). On output, the inverse is stored in-place incholesky.
-
int
gsl_linalg_cholesky_decomp2(gsl_matrix * A, gsl_vector * S)¶ This function calculates a diagonal scaling transformation S for the symmetric, positive-definite square matrix
A, and then computes the Cholesky decomposition S A S = L L^T. On input, the values from the diagonal and lower-triangular part of the matrixAare used (the upper triangular part is ignored). On output the diagonal and lower triangular part of the input matrixAcontain the matrix L, while the upper triangular part of the input matrix is overwritten with L^T (the diagonal terms being identical for both L and L^T). If the matrix is not positive-definite then the decomposition will fail, returning the error codeGSL_EDOM. The diagonal scale factors are stored inSon output.When testing whether a matrix is positive-definite, disable the error handler first to avoid triggering an error.
-
int
gsl_linalg_cholesky_solve2(const gsl_matrix * cholesky, const gsl_vector * S, const gsl_vector * b, gsl_vector * x)¶ This function solves the system (S A S) (S^{-1} x) = S b using the Cholesky decomposition of S A S held in the matrix
choleskywhich must have been previously computed bygsl_linalg_cholesky_decomp2().
-
int
gsl_linalg_cholesky_svx2(const gsl_matrix * cholesky, const gsl_vector * S, gsl_vector * x)¶ This function solves the system (S A S) (S^{-1} x) = S b in-place using the Cholesky decomposition of S A S held in the matrix
choleskywhich must have been previously computed bygsl_linalg_cholesky_decomp2(). On inputxshould contain the right-hand side b, which is replaced by the solution on output.
-
int
gsl_linalg_cholesky_scale(const gsl_matrix * A, gsl_vector * S)¶ This function calculates a diagonal scaling transformation of the symmetric, positive definite matrix
A, such that S A S has a condition number within a factor of N of the matrix of smallest possible condition number over all possible diagonal scalings. On output,Scontains the scale factors, given by S_i = 1/\sqrt{A_{ii}}. For any A_{ii} \le 0, the corresponding scale factor S_i is set to 1.
-
int
gsl_linalg_cholesky_scale_apply(gsl_matrix * A, const gsl_vector * S)¶ This function applies the scaling transformation
Sto the matrixA. On output,Ais replaced by S A S.
-
int
gsl_linalg_cholesky_rcond(const gsl_matrix * cholesky, double * rcond, gsl_vector * work)¶ This function estimates the reciprocal condition number (using the 1-norm) of the symmetric positive definite matrix A, using its Cholesky decomposition provided in
cholesky. The reciprocal condition number estimate, defined as 1 / (||A||_1 \cdot ||A^{-1}||_1), is stored inrcond. Additional workspace of size 3 N is required inwork.
Pivoted Cholesky Decomposition¶
A symmetric, positive definite square matrix A has an alternate Cholesky decomposition into a product of a lower unit triangular matrix L, a diagonal matrix D and L^T, given by L D L^T. This is equivalent to the Cholesky formulation discussed above, with the standard Cholesky lower triangular factor given by L D^{1 \over 2}. For ill-conditioned matrices, it can help to use a pivoting strategy to prevent the entries of D and L from growing too large, and also ensure D_1 \ge D_2 \ge \cdots \ge D_n > 0, where D_i are the diagonal entries of D. The final decomposition is given by
P A P^T = L D L^T
where P is a permutation matrix.
-
int
gsl_linalg_pcholesky_decomp(gsl_matrix * A, gsl_permutation * p)¶ This function factors the symmetric, positive-definite square matrix
Ainto the Pivoted Cholesky decomposition P A P^T = L D L^T. On input, the values from the diagonal and lower-triangular part of the matrixAare used to construct the factorization. On output the diagonal of the input matrixAstores the diagonal elements of D, and the lower triangular portion ofAcontains the matrix L. Since L has ones on its diagonal these do not need to be explicitely stored. The upper triangular portion ofAis unmodified. The permutation matrix P is stored inpon output.
-
int
gsl_linalg_pcholesky_solve(const gsl_matrix * LDLT, const gsl_permutation * p, const gsl_vector * b, gsl_vector * x)¶ This function solves the system A x = b using the Pivoted Cholesky decomposition of A held in the matrix
LDLTand permutationpwhich must have been previously computed bygsl_linalg_pcholesky_decomp().
-
int
gsl_linalg_pcholesky_svx(const gsl_matrix * LDLT, const gsl_permutation * p, gsl_vector * x)¶ This function solves the system A x = b in-place using the Pivoted Cholesky decomposition of A held in the matrix
LDLTand permutationpwhich must have been previously computed bygsl_linalg_pcholesky_decomp(). On input,xcontains the right hand side vector b which is replaced by the solution vector on output.
-
int
gsl_linalg_pcholesky_decomp2(gsl_matrix * A, gsl_permutation * p, gsl_vector * S)¶ This function computes the pivoted Cholesky factorization of the matrix S A S, where the input matrix
Ais symmetric and positive definite, and the diagonal scaling matrixSis computed to reduce the condition number ofAas much as possible. See Cholesky Decomposition for more information on the matrixS. The Pivoted Cholesky decomposition satisfies P S A S P^T = L D L^T. On input, the values from the diagonal and lower-triangular part of the matrixAare used to construct the factorization. On output the diagonal of the input matrixAstores the diagonal elements of D, and the lower triangular portion ofAcontains the matrix L. Since L has ones on its diagonal these do not need to be explicitely stored. The upper triangular portion ofAis unmodified. The permutation matrix P is stored inpon output. The diagonal scaling transformation is stored inSon output.
-
int
gsl_linalg_pcholesky_solve2(const gsl_matrix * LDLT, const gsl_permutation * p, const gsl_vector * S, const gsl_vector * b, gsl_vector * x)¶ This function solves the system (S A S) (S^{-1} x) = S b using the Pivoted Cholesky decomposition of S A S held in the matrix
LDLT, permutationp, and vectorS, which must have been previously computed bygsl_linalg_pcholesky_decomp2().
-
int
gsl_linalg_pcholesky_svx2(const gsl_matrix * LDLT, const gsl_permutation * p, const gsl_vector * S, gsl_vector * x)¶ This function solves the system (S A S) (S^{-1} x) = S b in-place using the Pivoted Cholesky decomposition of S A S held in the matrix
LDLT, permutationpand vectorS, which must have been previously computed bygsl_linalg_pcholesky_decomp2(). On input,xcontains the right hand side vector b which is replaced by the solution vector on output.
-
int
gsl_linalg_pcholesky_invert(const gsl_matrix * LDLT, const gsl_permutation * p, gsl_matrix * Ainv)¶ This function computes the inverse of the matrix A, using the Pivoted Cholesky decomposition stored in
LDLTandp. On output, the matrixAinvcontains A^{-1}.
-
int
gsl_linalg_pcholesky_rcond(const gsl_matrix * LDLT, const gsl_permutation * p, double * rcond, gsl_vector * work)¶ This function estimates the reciprocal condition number (using the 1-norm) of the symmetric positive definite matrix A, using its pivoted Cholesky decomposition provided in
LDLT. The reciprocal condition number estimate, defined as 1 / (||A||_1 \cdot ||A^{-1}||_1), is stored inrcond. Additional workspace of size 3 N is required inwork.
Modified Cholesky Decomposition¶
The modified Cholesky decomposition is suitable for solving systems A x = b where A is a symmetric indefinite matrix. Such matrices arise in nonlinear optimization algorithms. The standard Cholesky decomposition requires a positive definite matrix and would fail in this case. Instead of resorting to a method like QR or SVD, which do not take into account the symmetry of the matrix, we can instead introduce a small perturbation to the matrix A to make it positive definite, and then use a Cholesky decomposition on the perturbed matrix. The resulting decomposition satisfies
P (A + E) P^T = L D L^T
where P is a permutation matrix, E is a diagonal perturbation matrix, L is unit lower triangular, and D is diagonal. If A is sufficiently positive definite, then the perturbation matrix E will be zero and this method is equivalent to the pivoted Cholesky algorithm. For indefinite matrices, the perturbation matrix E is computed to ensure that A + E is positive definite and well conditioned.
-
int
gsl_linalg_mcholesky_decomp(gsl_matrix * A, gsl_permutation * p, gsl_vector * E)¶ This function factors the symmetric, indefinite square matrix
Ainto the Modified Cholesky decomposition P (A + E) P^T = L D L^T. On input, the values from the diagonal and lower-triangular part of the matrixAare used to construct the factorization. On output the diagonal of the input matrixAstores the diagonal elements of D, and the lower triangular portion ofAcontains the matrix L. Since L has ones on its diagonal these do not need to be explicitely stored. The upper triangular portion ofAis unmodified. The permutation matrix P is stored inpon output. The diagonal perturbation matrix is stored inEon output. The parameterEmay be set to NULL if it is not required.
-
int
gsl_linalg_mcholesky_solve(const gsl_matrix * LDLT, const gsl_permutation * p, const gsl_vector * b, gsl_vector * x)¶ This function solves the perturbed system (A + E) x = b using the Cholesky decomposition of A + E held in the matrix
LDLTand permutationpwhich must have been previously computed bygsl_linalg_mcholesky_decomp().
-
int
gsl_linalg_mcholesky_svx(const gsl_matrix * LDLT, const gsl_permutation * p, gsl_vector * x)¶ This function solves the perturbed system (A + E) x = b in-place using the Cholesky decomposition of A + E held in the matrix
LDLTand permutationpwhich must have been previously computed bygsl_linalg_mcholesky_decomp(). On input,xcontains the right hand side vector b which is replaced by the solution vector on output.
-
int
gsl_linalg_mcholesky_rcond(const gsl_matrix * LDLT, const gsl_permutation * p, double * rcond, gsl_vector * work)¶ This function estimates the reciprocal condition number (using the 1-norm) of the perturbed matrix A + E, using its pivoted Cholesky decomposition provided in
LDLT. The reciprocal condition number estimate, defined as 1 / (||A + E||_1 \cdot ||(A + E)^{-1}||_1), is stored inrcond. Additional workspace of size 3 N is required inwork.
Tridiagonal Decomposition of Real Symmetric Matrices¶
A symmetric matrix A can be factorized by similarity transformations into the form,
A = Q T Q^T
where Q is an orthogonal matrix and T is a symmetric tridiagonal matrix.
-
int
gsl_linalg_symmtd_decomp(gsl_matrix * A, gsl_vector * tau)¶ This function factorizes the symmetric square matrix
Ainto the symmetric tridiagonal decomposition Q T Q^T. On output the diagonal and subdiagonal part of the input matrixAcontain the tridiagonal matrix T. The remaining lower triangular part of the input matrix contains the Householder vectors which, together with the Householder coefficientstau, encode the orthogonal matrix Q. This storage scheme is the same as used by LAPACK. The upper triangular part ofAis not referenced.
-
int
gsl_linalg_symmtd_unpack(const gsl_matrix * A, const gsl_vector * tau, gsl_matrix * Q, gsl_vector * diag, gsl_vector * subdiag)¶ This function unpacks the encoded symmetric tridiagonal decomposition (
A,tau) obtained fromgsl_linalg_symmtd_decomp()into the orthogonal matrixQ, the vector of diagonal elementsdiagand the vector of subdiagonal elementssubdiag.
-
int
gsl_linalg_symmtd_unpack_T(const gsl_matrix * A, gsl_vector * diag, gsl_vector * subdiag)¶ This function unpacks the diagonal and subdiagonal of the encoded symmetric tridiagonal decomposition (
A,tau) obtained fromgsl_linalg_symmtd_decomp()into the vectorsdiagandsubdiag.
Tridiagonal Decomposition of Hermitian Matrices¶
A hermitian matrix A can be factorized by similarity transformations into the form,
A = U T U^T
where U is a unitary matrix and T is a real symmetric tridiagonal matrix.
-
int
gsl_linalg_hermtd_decomp(gsl_matrix_complex * A, gsl_vector_complex * tau)¶ This function factorizes the hermitian matrix
Ainto the symmetric tridiagonal decomposition U T U^T. On output the real parts of the diagonal and subdiagonal part of the input matrixAcontain the tridiagonal matrix T. The remaining lower triangular part of the input matrix contains the Householder vectors which, together with the Householder coefficientstau, encode the unitary matrix U. This storage scheme is the same as used by LAPACK. The upper triangular part ofAand imaginary parts of the diagonal are not referenced.
-
int
gsl_linalg_hermtd_unpack(const gsl_matrix_complex * A, const gsl_vector_complex * tau, gsl_matrix_complex * U, gsl_vector * diag, gsl_vector * subdiag)¶ This function unpacks the encoded tridiagonal decomposition (
A,tau) obtained fromgsl_linalg_hermtd_decomp()into the unitary matrixU, the real vector of diagonal elementsdiagand the real vector of subdiagonal elementssubdiag.
-
int
gsl_linalg_hermtd_unpack_T(const gsl_matrix_complex * A, gsl_vector * diag, gsl_vector * subdiag)¶ This function unpacks the diagonal and subdiagonal of the encoded tridiagonal decomposition (
A,tau) obtained from thegsl_linalg_hermtd_decomp()into the real vectorsdiagandsubdiag.
Hessenberg Decomposition of Real Matrices¶
A general real matrix A can be decomposed by orthogonal similarity transformations into the form
A = U H U^T
where U is orthogonal and H is an upper Hessenberg matrix, meaning that it has zeros below the first subdiagonal. The Hessenberg reduction is the first step in the Schur decomposition for the nonsymmetric eigenvalue problem, but has applications in other areas as well.
-
int
gsl_linalg_hessenberg_decomp(gsl_matrix * A, gsl_vector * tau)¶ This function computes the Hessenberg decomposition of the matrix
Aby applying the similarity transformation H = U^T A U. On output, H is stored in the upper portion ofA. The information required to construct the matrix U is stored in the lower triangular portion ofA. U is a product of N - 2 Householder matrices. The Householder vectors are stored in the lower portion ofA(below the subdiagonal) and the Householder coefficients are stored in the vectortau.taumust be of lengthN.
-
int
gsl_linalg_hessenberg_unpack(gsl_matrix * H, gsl_vector * tau, gsl_matrix * U)¶ This function constructs the orthogonal matrix U from the information stored in the Hessenberg matrix
Halong with the vectortau.Handtauare outputs fromgsl_linalg_hessenberg_decomp().
-
int
gsl_linalg_hessenberg_unpack_accum(gsl_matrix * H, gsl_vector * tau, gsl_matrix * V)¶ This function is similar to
gsl_linalg_hessenberg_unpack(), except it accumulates the matrixUintoV, so that V' = VU. The matrixVmust be initialized prior to calling this function. SettingVto the identity matrix provides the same result asgsl_linalg_hessenberg_unpack(). IfHis orderN, thenVmust haveNcolumns but may have any number of rows.
-
int
gsl_linalg_hessenberg_set_zero(gsl_matrix * H)¶ This function sets the lower triangular portion of
H, below the subdiagonal, to zero. It is useful for clearing out the Householder vectors after callinggsl_linalg_hessenberg_decomp().
Hessenberg-Triangular Decomposition of Real Matrices¶
A general real matrix pair (A, B) can be decomposed by orthogonal similarity transformations into the form
A &= U H V^T \\ B &= U R V^T
where U and V are orthogonal, H is an upper Hessenberg matrix, and R is upper triangular. The Hessenberg-Triangular reduction is the first step in the generalized Schur decomposition for the generalized eigenvalue problem.
-
int
gsl_linalg_hesstri_decomp(gsl_matrix * A, gsl_matrix * B, gsl_matrix * U, gsl_matrix * V, gsl_vector * work)¶ This function computes the Hessenberg-Triangular decomposition of the matrix pair (
A,B). On output, H is stored inA, and R is stored inB. IfUandVare provided (they may be null), the similarity transformations are stored in them. Additional workspace of length N is needed inwork.
Bidiagonalization¶
A general matrix A can be factorized by similarity transformations into the form,
A = U B V^T
where U and V are orthogonal matrices and B is a
N-by-N bidiagonal matrix with non-zero entries only on the
diagonal and superdiagonal. The size of U is M-by-N
and the size of V is N-by-N.
-
int
gsl_linalg_bidiag_decomp(gsl_matrix * A, gsl_vector * tau_U, gsl_vector * tau_V)¶ This function factorizes the M-by-N matrix
Ainto bidiagonal form U B V^T. The diagonal and superdiagonal of the matrix B are stored in the diagonal and superdiagonal ofA. The orthogonal matrices U andVare stored as compressed Householder vectors in the remaining elements ofA. The Householder coefficients are stored in the vectorstau_Uandtau_V. The length oftau_Umust equal the number of elements in the diagonal ofAand the length oftau_Vshould be one element shorter.
-
int
gsl_linalg_bidiag_unpack(const gsl_matrix * A, const gsl_vector * tau_U, gsl_matrix * U, const gsl_vector * tau_V, gsl_matrix * V, gsl_vector * diag, gsl_vector * superdiag)¶ This function unpacks the bidiagonal decomposition of
Aproduced bygsl_linalg_bidiag_decomp(), (A,tau_U,tau_V) into the separate orthogonal matricesU,Vand the diagonal vectordiagand superdiagonalsuperdiag. Note thatUis stored as a compact M-by-N orthogonal matrix satisfying U^T U = I for efficiency.
-
int
gsl_linalg_bidiag_unpack2(gsl_matrix * A, gsl_vector * tau_U, gsl_vector * tau_V, gsl_matrix * V)¶ This function unpacks the bidiagonal decomposition of
Aproduced bygsl_linalg_bidiag_decomp(), (A,tau_U,tau_V) into the separate orthogonal matricesU,Vand the diagonal vectordiagand superdiagonalsuperdiag. The matrixUis stored in-place inA.
-
int
gsl_linalg_bidiag_unpack_B(const gsl_matrix * A, gsl_vector * diag, gsl_vector * superdiag)¶ This function unpacks the diagonal and superdiagonal of the bidiagonal decomposition of
Afromgsl_linalg_bidiag_decomp(), into the diagonal vectordiagand superdiagonal vectorsuperdiag.
Givens Rotations¶
A Givens rotation is a rotation in the plane acting on two elements of a given vector. It can be represented in matrix form as
G(i,j,\theta) = \left( \begin{matrix} 1 & \ldots & 0 & \ldots & 0 & \ldots & 0 \\ \vdots & \ddots & \vdots & & \vdots & & \vdots \\ 0 & \ldots & \cos{\theta} & \ldots & -\sin{\theta} & \ldots & 0 \\ \vdots & & \vdots & \ddots & \vdots & & \vdots \\ 0 & \ldots & \sin{\theta} & \ldots & \cos{\theta} & \ldots & 0 \\ \vdots & & \vdots & & \vdots & \ddots & \vdots \\ 0 & \ldots & 0 & \ldots & 0 & \ldots & 1 \end{matrix} \right)
where the \cos{\theta} and \sin{\theta} appear at the intersection of the i-th and j-th rows and columns. When acting on a vector x, G(i,j,\theta) x performs a rotation of the (i,j) elements of x. Givens rotations are typically used to introduce zeros in vectors, such as during the QR decomposition of a matrix. In this case, it is typically desired to find c and s such that
\left( \begin{matrix} c & -s \\ s & c \end{matrix} \right) \left( \begin{matrix} a \\ b \end{matrix} \right) = \left( \begin{matrix} r \\ 0 \end{matrix} \right)
with r = \sqrt{a^2 + b^2}.
-
void
gsl_linalg_givens(const double a, const double b, double * c, double * s)¶ This function computes c = \cos{\theta} and s = \sin{\theta} so that the Givens matrix G(\theta) acting on the vector (a,b) produces (r, 0), with r = \sqrt{a^2 + b^2}.
-
void
gsl_linalg_givens_gv(gsl_vector * v, const size_t i, const size_t j, const double c, const double s)¶ This function applies the Givens rotation defined by c = \cos{\theta} and s = \sin{\theta} to the
iandjelements ofv. On output, (v(i),v(j)) \leftarrow G(\theta) (v(i),v(j)).
Householder Transformations¶
A Householder transformation is a rank-1 modification of the identity matrix which can be used to zero out selected elements of a vector. A Householder matrix P takes the form,
P = I - \tau v v^T
where v is a vector (called the Householder vector) and \tau = 2/(v^T v). The functions described in this section use the rank-1 structure of the Householder matrix to create and apply Householder transformations efficiently.
-
double
gsl_linalg_householder_transform(gsl_vector * w)¶ -
gsl_complex
gsl_linalg_complex_householder_transform(gsl_vector_complex * w)¶ This function prepares a Householder transformation P = I - \tau v v^T which can be used to zero all the elements of the input vector
wexcept the first. On output the Householder vectorvis stored inwand the scalar \tau is returned. The householder vectorvis normalized so thatv[0] = 1, however this 1 is not stored in the output vector. Instead,w[0]is set to the first element of the transformed vector, so that if u = P w,w[0] = u[0]on output and the remainder of u is zero.
-
int
gsl_linalg_householder_hm(double tau, const gsl_vector * v, gsl_matrix * A)¶ -
int
gsl_linalg_complex_householder_hm(gsl_complex tau, const gsl_vector_complex * v, gsl_matrix_complex * A)¶ This function applies the Householder matrix P defined by the scalar
tauand the vectorvto the left-hand side of the matrixA. On output the result P A is stored inA.
-
int
gsl_linalg_householder_mh(double tau, const gsl_vector * v, gsl_matrix * A)¶ -
int
gsl_linalg_complex_householder_mh(gsl_complex tau, const gsl_vector_complex * v, gsl_matrix_complex * A)¶ This function applies the Householder matrix P defined by the scalar
tauand the vectorvto the right-hand side of the matrixA. On output the result A P is stored inA.
-
int
gsl_linalg_householder_hv(double tau, const gsl_vector * v, gsl_vector * w)¶ -
int
gsl_linalg_complex_householder_hv(gsl_complex tau, const gsl_vector_complex * v, gsl_vector_complex * w)¶ This function applies the Householder transformation P defined by the scalar
tauand the vectorvto the vectorw. On output the result P w is stored inw.
Householder solver for linear systems¶
-
int
gsl_linalg_HH_solve(gsl_matrix * A, const gsl_vector * b, gsl_vector * x)¶ This function solves the system A x = b directly using Householder transformations. On output the solution is stored in
xandbis not modified. The matrixAis destroyed by the Householder transformations.
-
int
gsl_linalg_HH_svx(gsl_matrix * A, gsl_vector * x)¶ This function solves the system A x = b in-place using Householder transformations. On input
xshould contain the right-hand side b, which is replaced by the solution on output. The matrixAis destroyed by the Householder transformations.
Tridiagonal Systems¶
The functions described in this section efficiently solve symmetric,
non-symmetric and cyclic tridiagonal systems with minimal storage.
Note that the current implementations of these functions use a variant
of Cholesky decomposition, so the tridiagonal matrix must be positive
definite. For non-positive definite matrices, the functions return
the error code GSL_ESING.
-
int
gsl_linalg_solve_tridiag(const gsl_vector * diag, const gsl_vector * e, const gsl_vector * f, const gsl_vector * b, gsl_vector * x)¶ This function solves the general N-by-N system A x = b where
Ais tridiagonal (N \geq 2). The super-diagonal and sub-diagonal vectorseandfmust be one element shorter than the diagonal vectordiag. The form ofAfor the 4-by-4 case is shown below,A = \left( \begin{matrix} d_0&e_0& 0& 0\\ f_0&d_1&e_1& 0\\ 0 &f_1&d_2&e_2\\ 0 &0 &f_2&d_3 \end{matrix} \right)
-
int
gsl_linalg_solve_symm_tridiag(const gsl_vector * diag, const gsl_vector * e, const gsl_vector * b, gsl_vector * x)¶ This function solves the general N-by-N system A x = b where
Ais symmetric tridiagonal (N \geq 2). The off-diagonal vectoremust be one element shorter than the diagonal vectordiag. The form ofAfor the 4-by-4 case is shown below,A = \left( \begin{matrix} d_0&e_0& 0& 0\\ e_0&d_1&e_1& 0\\ 0 &e_1&d_2&e_2\\ 0 &0 &e_2&d_3 \end{matrix} \right)
-
int
gsl_linalg_solve_cyc_tridiag(const gsl_vector * diag, const gsl_vector * e, const gsl_vector * f, const gsl_vector * b, gsl_vector * x)¶ This function solves the general N-by-N system A x = b where
Ais cyclic tridiagonal (N \geq 3). The cyclic super-diagonal and sub-diagonal vectorseandfmust have the same number of elements as the diagonal vectordiag. The form ofAfor the 4-by-4 case is shown below,A = \left( \begin{matrix} d_0&e_0& 0 &f_3\\ f_0&d_1&e_1& 0 \\ 0 &f_1&d_2&e_2\\ e_3& 0 &f_2&d_3 \end{matrix} \right)
-
int
gsl_linalg_solve_symm_cyc_tridiag(const gsl_vector * diag, const gsl_vector * e, const gsl_vector * b, gsl_vector * x)¶ This function solves the general N-by-N system A x = b where
Ais symmetric cyclic tridiagonal (N \geq 3). The cyclic off-diagonal vectoremust have the same number of elements as the diagonal vectordiag. The form ofAfor the 4-by-4 case is shown below,A = \left( \begin{matrix} d_0&e_0& 0 &e_3\\ e_0&d_1&e_1& 0 \\ 0 &e_1&d_2&e_2\\ e_3& 0 &e_2&d_3 \end{matrix} \right)
Triangular Systems¶
-
int
gsl_linalg_tri_upper_invert(gsl_matrix * T)¶ -
int
gsl_linalg_tri_lower_invert(gsl_matrix * T)¶ -
int
gsl_linalg_tri_upper_unit_invert(gsl_matrix * T)¶ -
int
gsl_linalg_tri_lower_unit_invert(gsl_matrix * T)¶ These functions calculate the in-place inverse of the triangular matrix
T. When theupperprefix is specified, then the upper triangle ofTis used, and when thelowerprefix is specified, the lower triangle is used. If theunitprefix is specified, then the diagonal elements of the matrixTare taken as unity and are not referenced. Otherwise the diagonal elements are used in the inversion.
-
int
gsl_linalg_tri_upper_rcond(const gsl_matrix * T, double * rcond, gsl_vector * work)¶ -
int
gsl_linalg_tri_lower_rcond(const gsl_matrix * T, double * rcond, gsl_vector * work)¶ These functions estimate the reciprocal condition number, in the 1-norm, of the upper or lower N-by-N triangular matrix
T. The reciprocal condition number is stored inrcondon output, and is defined by 1 / (||T||_1 \cdot ||T^{-1}||_1). Additional workspace of size 3 N is required inwork.
Balancing¶
The process of balancing a matrix applies similarity transformations to make the rows and columns have comparable norms. This is useful, for example, to reduce roundoff errors in the solution of eigenvalue problems. Balancing a matrix A consists of replacing A with a similar matrix
A' = D^{-1} A D
where D is a diagonal matrix whose entries are powers of the floating point radix.
-
int
gsl_linalg_balance_matrix(gsl_matrix * A, gsl_vector * D)¶ This function replaces the matrix
Awith its balanced counterpart and stores the diagonal elements of the similarity transformation into the vectorD.
Examples¶
The following program solves the linear system A x = b. The system to be solved is,
\left( \begin{matrix} 0.18& 0.60& 0.57& 0.96\\ 0.41& 0.24& 0.99& 0.58\\ 0.14& 0.30& 0.97& 0.66\\ 0.51& 0.13& 0.19& 0.85 \end{matrix} \right) \left( \begin{matrix} x_0\\ x_1\\ x_2\\ x_3 \end{matrix} \right) = \left( \begin{matrix} 1.0\\ 2.0\\ 3.0\\ 4.0 \end{matrix} \right)
and the solution is found using LU decomposition of the matrix A.
#include <stdio.h>
#include <gsl/gsl_linalg.h>
int
main (void)
{
double a_data[] = { 0.18, 0.60, 0.57, 0.96,
0.41, 0.24, 0.99, 0.58,
0.14, 0.30, 0.97, 0.66,
0.51, 0.13, 0.19, 0.85 };
double b_data[] = { 1.0, 2.0, 3.0, 4.0 };
gsl_matrix_view m
= gsl_matrix_view_array (a_data, 4, 4);
gsl_vector_view b
= gsl_vector_view_array (b_data, 4);
gsl_vector *x = gsl_vector_alloc (4);
int s;
gsl_permutation * p = gsl_permutation_alloc (4);
gsl_linalg_LU_decomp (&m.matrix, p, &s);
gsl_linalg_LU_solve (&m.matrix, p, &b.vector, x);
printf ("x = \n");
gsl_vector_fprintf (stdout, x, "%g");
gsl_permutation_free (p);
gsl_vector_free (x);
return 0;
}
Here is the output from the program,
x =
-4.05205
-12.6056
1.66091
8.69377
This can be verified by multiplying the solution x by the original matrix A using GNU octave,
octave> A = [ 0.18, 0.60, 0.57, 0.96;
0.41, 0.24, 0.99, 0.58;
0.14, 0.30, 0.97, 0.66;
0.51, 0.13, 0.19, 0.85 ];
octave> x = [ -4.05205; -12.6056; 1.66091; 8.69377];
octave> A * x
ans =
1.0000
2.0000
3.0000
4.0000
This reproduces the original right-hand side vector, b, in accordance with the equation A x = b.
References and Further Reading¶
Further information on the algorithms described in this section can be found in the following book,
- G. H. Golub, C. F. Van Loan, “Matrix Computations” (3rd Ed, 1996), Johns Hopkins University Press, ISBN 0-8018-5414-8.
The LAPACK library is described in the following manual,
- LAPACK Users’ Guide (Third Edition, 1999), Published by SIAM, ISBN 0-89871-447-8
The LAPACK source code can be found at http://www.netlib.org/lapack, along with an online copy of the users guide.
The Modified Golub-Reinsch algorithm is described in the following paper,
- T.F. Chan, “An Improved Algorithm for Computing the Singular Value Decomposition”, ACM Transactions on Mathematical Software, 8 (1982), pp 72–83.
The Jacobi algorithm for singular value decomposition is described in the following papers,
- J.C. Nash, “A one-sided transformation method for the singular value decomposition and algebraic eigenproblem”, Computer Journal, Volume 18, Number 1 (1975), p 74–76
- J.C. Nash and S. Shlien “Simple algorithms for the partial singular value decomposition”, Computer Journal, Volume 30 (1987), p 268–275.
- J. Demmel, K. Veselic, “Jacobi’s Method is more accurate than
QR”, Lapack Working Note 15 (LAWN-15), October 1989. Available
from netlib, http://www.netlib.org/lapack/ in the
lawnsorlawnspdfdirectories.
The algorithm for estimating a matrix condition number is described in the following paper,
- N. J. Higham, “FORTRAN codes for estimating the one-norm of a real or complex matrix, with applications to condition estimation”, ACM Trans. Math. Soft., vol. 14, no. 4, pp. 381-396, December 1988.