| title | linalg |
|---|
[TOC]
The stdlib linear algebra library provides high-level APIs for dealing with common linear algebra operations.
Experimental
BLAS and LAPACK backends provide efficient low level implementations of many linear algebra algorithms, and are employed for non-trivial operators.
A Modern Fortran version of the Reference-LAPACK 3.10.1 implementation is provided as a backend.
Modern Fortran modules with full explicit typing features are provided after an
automated conversion
of the legacy codes:
- [stdlib_linalg_blas(module)], [stdlib_linalg_lapack(module)] provide kind-agnostic interfaces to all functions.
- Both libraries are available for 32- (
sp), 64- (dp) and 128-bit (qp)realandcomplexnumbers (the latter if available in the current build) - Free format, lower-case style
implicit none(type, external)applied to all procedures and modulesintentadded and allpureprocedures where possiblestdlibprovides all procedures in two different flavors: (a) original BLAS/LAPACK names with a prefixstdlib_?<name>(ex:stdlib_dgemv,stdlib_sgemv); (b) A generic, kind agnostic<name>, i.e.gemv.- F77-style
parameters removed, and all numeric constants have been generalized with KIND-dependent Fortran intrinsics. - preprocessor-based OpenMP directives retained. The single-source module structure hopefully allows for cross-procedural inlining which is otherwise impossible without link-time optimization.
When available, highly optimized libraries that take advantage of specialized processor instructions should be preferred over the stdlib implementation.
Examples of such libraries are: OpenBLAS, MKL (TM), Accelerate, and ATLAS. In order to enable their usage, simply ensure that the following pre-processor macros are defined:
STDLIB_EXTERNAL_BLASwraps all BLAS procedures (except for the 128-bit ones) to an external librarySTDLIB_EXTERNAL_LAPACKwraps all LAPACK procedures (except for the 128-bit ones) to an external library
These can be enabled during the build process. For example, with CMake, one can enable these preprocessor directives using add_compile_definitions(STDLIB_EXTERNAL_BLAS STDLIB_EXTERNAL_LAPACK).
The same is possible from the fpm branch, where the cpp preprocessor is enabled by default. For example, the macros can be added to the project's manifest:
# Link against appropriate external BLAS and LAPACK libraries, if necessary
[build]
link = ["blas", "lapack"]
[dependencies]
stdlib="*"
# Macros are only needed if using an external library
[preprocess]
[preprocess.cpp]
macros = ["STDLIB_EXTERNAL_BLAS", "STDLIB_EXTERNAL_LAPACK"]or directly via compiler flags:
fpm build --flag "-DSTDLIB_EXTERNAL_BLAS -DSTDLIB_EXTERNAL_LAPACK -lblas -llapack".
All procedures in the BLAS and LAPACK backends follow the standard interfaces from the
Reference LAPACK. So, the online Users Guide
should be consulted for the full API and descriptions of procedure arguments and their usage.
The stdlib implementation makes both kind-agnostic and specific procedure interfaces available via modules
[stdlib_linalg_blas(module)] and [stdlib_linalg_lapack(module)]. Because all procedures start with a letter
that indicates the base datatype, the stdlib generic
interface drops the heading letter and contains all kind-dependent implementations. For example, the generic
interface to the axpy function looks like:
!> AXPY: constant times a vector plus a vector.
interface axpy
module procedure stdlib_saxpy
module procedure stdlib_daxpy
module procedure stdlib_qaxpy
module procedure stdlib_caxpy
module procedure stdlib_zaxpy
module procedure stdlib_waxpy
end interface axpyThe generic interface is the endpoint for using an external library. Whenever the latter is used, references
to the internal module procedures are replaced with interfaces to the external library,
for example:
!> AXPY: constant times a vector plus a vector.
interface axpy
pure subroutine caxpy(n,ca,cx,incx,cy,incy)
import sp,dp,qp,ilp,lk
implicit none
complex(sp), intent(in) :: ca,cx(*)
integer(ilp), intent(in) :: incx,incy,n
complex(sp), intent(inout) :: cy(*)
end subroutine caxpy
! [....]
module procedure stdlib_qaxpy
end interface axpyNote that the 128-bit functions are only provided by stdlib and always point to the internal implementation.
Because 128-bit precision is identified as [stdlib_kinds(module):qp], initials for 128-bit procedures were
labelled as q (quadruple-precision reals) and w ("wide" or quadruple-precision complex numbers).
Extended precision ([stdlib_kinds(module):xdp]) calculations are labelled as x (extended-precision reals).
and y (extended-precision complex numbers).
{!example/linalg/example_blas_gemv.f90!}{!example/linalg/example_lapack_getrf.f90!}The Fortran Standard Library is distributed under the MIT License. LAPACK and its contained BLAS are a
freely-available software package. They are available from netlib via anonymous
ftp and the World Wide Web. Thus, they can be included in commercial software packages (and have been).
The license used for the BLAS and LAPACK backends is the modified BSD license.
The header of the LICENSE.txt file has as its licensing requirements:
Copyright (c) 1992-2013 The University of Tennessee and The University
of Tennessee Research Foundation. All rights
reserved.
Copyright (c) 2000-2013 The University of California Berkeley. All
rights reserved.
Copyright (c) 2006-2013 The University of Colorado Denver. All rights
reserved.
$COPYRIGHT$
Additional copyrights may follow
$HEADER$
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
- Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer listed
in this license in the documentation and/or other materials
provided with the distribution.
- Neither the name of the copyright holders nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
The copyright holders provide no reassurances that the source code
provided does not infringe any patent, copyright, or any other
intellectual property rights of third parties. The copyright holders
disclaim any liability to any recipient for claims brought against
recipient by any third party for infringement of that parties
intellectual property rights.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
So the license for the LICENSE.txt code is compatible with the use of
modified versions of the code in the Fortran Standard Library under the MIT license.
Credit for the BLAS, LAPACK libraries should be given to the LAPACK authors.
According to the original license, we also changed the name of the routines and commented the changes made
to the original.
Stable
Pure function.
Create a diagonal array or extract the diagonal elements of an array
d = [[stdlib_linalg(module):diag(interface)]] (a [, k])
a: Shall be a rank-1 or or rank-2 array. If a is a rank-1 array (i.e. a vector) then diag returns a rank-2 array with the elements of a on the diagonal. If a is a rank-2 array (i.e. a matrix) then diag returns a rank-1 array of the diagonal elements.
k (optional): Shall be a scalar of type integer and specifies the diagonal. The default k = 0 represents the main diagonal, k > 0 are diagonals above the main diagonal, k < 0 are diagonals below the main diagonal.
Returns a diagonal array or a vector with the extracted diagonal elements.
{!example/linalg/example_diag1.f90!}{!example/linalg/example_diag2.f90!}{!example/linalg/example_diag3.f90!}{!example/linalg/example_diag4.f90!}{!example/linalg/example_diag5.f90!}Stable
Pure function.
Constructs the identity matrix.
I = [[stdlib_linalg(module):eye(function)]] (dim1 [, dim2] [, mold])
dim1: A scalar of typeinteger. This is anintent(in)argument and specifies the number of rows.dim2: A scalar of typeinteger. This is an optionalintent(in)argument specifying the number of columns. If not provided, the matrix is square (dim1 = dim2).mold: A scalar of any supportedinteger,real, orcomplextype. This is an optionalintent(in)argument. If provided, the returned identity matrix will have the same type and kind asmold. If not provided, the matrix will be of typereal(real64)by default.
Returns the identity matrix, with ones on the main diagonal and zeros elsewhere.
- By default, the return value is of type
real(real64), which is recommended for arithmetic safety. - If the
moldargument is provided, the return value will match the type and kind ofmold, allowing for arbitraryinteger,real, orcomplexreturn types.
!> Return default type (real64)
A = eye(2,2)/2 !! A == diag([0.5_dp, 0.5_dp])
!> Return 32-bit complex
A = eye(2,2, mold=(0.0,0.0))/2 !! A == diag([(0.5,0.5), (0.5,0.5)]){!example/linalg/example_eye1.f90!}{!example/linalg/example_eye2.f90!}Stable
Trace of a matrix (rank-2 array)
result = [[stdlib_linalg(module):trace(interface)]] (A)
A: Shall be a rank-2 array. If A is not square, then trace(A) will return the sum of diagonal values from the square sub-section of A.
Returns the trace of the matrix, i.e. the sum of diagonal elements.
{!example/linalg/example_trace.f90!}Experimental
Computes the outer product of two vectors
d = [[stdlib_linalg(module):outer_product(interface)]] (u, v)
u: Shall be a rank-1 array
v: Shall be a rank-1 array
Returns a rank-2 array equal to u v^T (where u, v are considered column vectors). The shape of the returned array is [size(u), size(v)].
{!example/linalg/example_outer_product.f90!}Experimental
Computes the Kronecker product of two rank-2 arrays
C = [[stdlib_linalg(module):kronecker_product(interface)]] (A, B)
A: Shall be a rank-2 array with dimensions M1, N1
B: Shall be a rank-2 array with dimensions M2, N2
Returns a rank-2 array equal to A \otimes B. The shape of the returned array is [M1*M2, N1*N2].
{!example/linalg/example_kronecker_product.f90!}Experimental
Computes the cross product of two vectors
c = [[stdlib_linalg(module):cross_product(interface)]] (a, b)
a: Shall be a rank-1 and size-3 array
b: Shall be a rank-1 and size-3 array
Returns a rank-1 and size-3 array which is perpendicular to both a and b.
{!example/linalg/example_cross_product.f90!}Experimental
Checks if a matrix is square
d = [[stdlib_linalg(module):is_square(interface)]] (A)
A: Shall be a rank-2 array
Returns a logical scalar that is .true. if the input matrix is square, and .false. otherwise.
{!example/linalg/example_is_square.f90!}Experimental
Checks if a matrix is diagonal
d = [[stdlib_linalg(module):is_diagonal(interface)]] (A)
A: Shall be a rank-2 array
Returns a logical scalar that is .true. if the input matrix is diagonal, and .false. otherwise.
Note that nonsquare matrices may be diagonal, so long as a_ij = 0 when i /= j.
{!example/linalg/example_is_diagonal.f90!}Experimental
Checks if a matrix is symmetric
d = [[stdlib_linalg(module):is_symmetric(interface)]] (A)
A: Shall be a rank-2 array
Returns a logical scalar that is .true. if the input matrix is symmetric, and .false. otherwise.
{!example/linalg/example_is_symmetric.f90!}Experimental
Checks if a matrix is skew-symmetric
d = [[stdlib_linalg(module):is_skew_symmetric(interface)]] (A)
A: Shall be a rank-2 array
Returns a logical scalar that is .true. if the input matrix is skew-symmetric, and .false. otherwise.
{!example/linalg/example_is_skew_symmetric.f90!}Experimental
Compute the Hermitian version of a rank-2 matrix.
For complex matrices, the function returns the conjugate transpose (conjg(transpose(a))).
For real or integer matrices, the function returns the transpose (transpose(a)).
h = [[stdlib_linalg(module):hermitian(interface)]] (a)
a: Shall be a rank-2 array of type integer, real, or complex. The input matrix a is not modified.
Returns a rank-2 array of the same shape and type as a. If a is of type complex, the Hermitian matrix is computed as conjg(transpose(a)).
For real or integer types, it is equivalent to the intrinsic transpose(a).
{!example/linalg/example_hermitian.f90!}Experimental
Checks if a matrix is Hermitian
d = [[stdlib_linalg(module):is_hermitian(interface)]] (A)
A: Shall be a rank-2 array
Returns a logical scalar that is .true. if the input matrix is Hermitian, and .false. otherwise.
{!example/linalg/example_is_hermitian.f90!}Experimental
Checks if a matrix is triangular
d = [[stdlib_linalg(module):is_triangular(interface)]] (A,uplo)
A: Shall be a rank-2 array
uplo: Shall be a single character from {'u','U','l','L'}
Returns a logical scalar that is .true. if the input matrix is the type of triangular specified by uplo (upper or lower), and .false. otherwise.
Note that the definition of triangular used in this implementation allows nonsquare matrices to be triangular.
Specifically, upper triangular matrices satisfy a_ij = 0 when j < i, and lower triangular matrices satisfy a_ij = 0 when j > i.
{!example/linalg/example_is_triangular.f90!}Experimental
Checks if a matrix is Hessenberg
d = [[stdlib_linalg(module):is_hessenberg(interface)]] (A,uplo)
A: Shall be a rank-2 array
uplo: Shall be a single character from {'u','U','l','L'}
Returns a logical scalar that is .true. if the input matrix is the type of Hessenberg specified by uplo (upper or lower), and .false. otherwise.
Note that the definition of Hessenberg used in this implementation allows nonsquare matrices to be Hessenberg.
Specifically, upper Hessenberg matrices satisfy a_ij = 0 when j < i-1, and lower Hessenberg matrices satisfy a_ij = 0 when j > i+1.
{!example/linalg/example_is_hessenberg.f90!}Stable
This function computes the solution to a linear matrix equation ( A \cdot x = b ), where ( A ) is a square, full-rank, real or complex matrix.
Result vector or array x returns the exact solution to within numerical precision, provided that the matrix is not ill-conditioned.
An error is returned if the matrix is rank-deficient or singular to working precision.
The solver is based on LAPACK's *GESV backends.
Pure interface:
x = [[stdlib_linalg(module):solve(interface)]] (a, b)
Expert interface:
x = [[stdlib_linalg(module):solve(interface)]] (a, b [, overwrite_a], err)
a: Shall be a rank-2 real or complex square array containing the coefficient matrix. It is normally an intent(in) argument. If overwrite_a=.true., it is an intent(inout) argument and is destroyed by the call.
b: Shall be a rank-1 or rank-2 array of the same kind as a, containing the right-hand-side vector(s). It is an intent(in) argument.
overwrite_a (optional): Shall be an input logical flag. if .true., input matrix a will be used as temporary storage and overwritten. This avoids internal data allocation. This is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument. The function is not pure if this argument is provided.
For a full-rank matrix, returns an array value that represents the solution to the linear system of equations.
Raises LINALG_ERROR if the matrix is singular to working precision.
Raises LINALG_VALUE_ERROR if the matrix and rhs vectors have invalid/incompatible sizes.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_solve1.f90!}
{!example/linalg/example_solve2.f90!}Stable
This subroutine computes the solution to a linear matrix equation ( A \cdot x = b ), where ( A ) is a square, full-rank, real or complex matrix.
Result vector or array x returns the exact solution to within numerical precision, provided that the matrix is not ill-conditioned.
An error is returned if the matrix is rank-deficient or singular to working precision.
If all optional arrays are provided by the user, no internal allocations take place.
The solver is based on LAPACK's *GESV backends.
Simple (Pure) interface:
call [[stdlib_linalg(module):solve_lu(interface)]] (a, b, x)
Expert (Pure) interface:
call [[stdlib_linalg(module):solve_lu(interface)]] (a, b, x [, pivot, overwrite_a, err])
a: Shall be a rank-2 real or complex square array containing the coefficient matrix. It is normally an intent(in) argument. If overwrite_a=.true., it is an intent(inout) argument and is destroyed by the call.
b: Shall be a rank-1 or rank-2 array of the same kind as a, containing the right-hand-side vector(s). It is an intent(in) argument.
x: Shall be a rank-1 or rank-2 array of the same kind and size as b, that returns the solution(s) to the system. It is an intent(inout) argument, and must have the contiguous property.
pivot (optional): Shall be a rank-1 array of the same kind and matrix dimension as a, providing storage for the diagonal pivot indices. It is an intent(inout) arguments, and returns the diagonal pivot indices.
overwrite_a (optional): Shall be an input logical flag. if .true., input matrix a will be used as temporary storage and overwritten. This avoids internal data allocation. This is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
For a full-rank matrix, returns an array value that represents the solution to the linear system of equations.
Raises LINALG_ERROR if the matrix is singular to working precision.
Raises LINALG_VALUE_ERROR if the matrix and rhs vectors have invalid/incompatible sizes.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_solve3.f90!}Stable
This function computes the least-squares solution to a linear matrix equation ( A \cdot x = b ).
Result vector x returns the approximate solution that minimizes the 2-norm ( || A \cdot x - b ||_2 ), i.e., it contains the least-squares solution to the problem. Matrix A may be full-rank, over-determined, or under-determined. The solver is based on LAPACK's *GELSD backends.
x = [[stdlib_linalg(module):lstsq(interface)]] (a, b, [, cond, overwrite_a, rank, err])
a: Shall be a rank-2 real or complex array containing the coefficient matrix. It is an intent(inout) argument.
b: Shall be a rank-1 or rank-2 array of the same kind as a, containing one or more right-hand-side vector(s), each in its leading dimension. It is an intent(in) argument.
cond (optional): Shall be a scalar real value cut-off threshold for rank evaluation: s_i >= cond*maxval(s), i=1:rank. Shall be a scalar, intent(in) argument.
overwrite_a (optional): Shall be an input logical flag. If .true., input matrix A will be used as temporary storage and overwritten. This avoids internal data allocation. This is an intent(in) argument.
rank (optional): Shall be an integer scalar value, that contains the rank of input matrix A. This is an intent(out) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Returns an array value of the same kind and rank as b, containing the solution(s) to the least squares system.
Raises LINALG_ERROR if the underlying Singular Value Decomposition process did not converge.
Raises LINALG_VALUE_ERROR if the matrix and right-hand-side vector have invalid/incompatible sizes.
Exceptions trigger an error stop.
{!example/linalg/example_lstsq1.f90!}solve_lstsq - Compute the least squares solution to a linear matrix equation (subroutine interface).
Stable
This subroutine computes the least-squares solution to a linear matrix equation ( A \cdot x = b ).
Result vector x returns the approximate solution that minimizes the 2-norm ( || A \cdot x - b ||_2 ), i.e., it contains the least-squares solution to the problem. Matrix A may be full-rank, over-determined, or under-determined. The solver is based on LAPACK's *GELSD backends.
call [[stdlib_linalg(module):solve_lstsq(interface)]] (a, b, x, [, real_storage, int_storage, [cmpl_storage, ] cond, singvals, overwrite_a, rank, err])
a: Shall be a rank-2 real or complex array containing the coefficient matrix. It is an intent(inout) argument.
b: Shall be a rank-1 or rank-2 array of the same kind as a, containing one or more right-hand-side vector(s), each in its leading dimension. It is an intent(in) argument.
x: Shall be an array of same kind and rank as b, and leading dimension of at least n, containing the solution(s) to the least squares system. It is an intent(inout) argument.
real_storage (optional): Shall be a real rank-1 array of the same kind a, providing working storage for the solver. It minimum size can be determined with a call to [[stdlib_linalg(module):lstsq_space(interface)]]. It is an intent(inout) argument.
int_storage (optional): Shall be an integer rank-1 array, providing working storage for the solver. It minimum size can be determined with a call to [[stdlib_linalg(module):lstsq_space(interface)]]. It is an intent(inout) argument.
cmpl_storage (optional): For complex systems, it shall be a complex rank-1 array, providing working storage for the solver. It minimum size can be determined with a call to [[stdlib_linalg(module):lstsq_space(interface)]]. It is an intent(inout) argument.
cond (optional): Shall be a scalar real value cut-off threshold for rank evaluation: s_i >= cond*maxval(s), i=1:rank. Shall be a scalar, intent(in) argument.
singvals (optional): Shall be a real rank-1 array of the same kind a and size at least min(m,n), returning the list of singular values s(i)>=cond*maxval(s) from the internal SVD, in descending order of magnitude. It is an intent(out) argument.
overwrite_a (optional): Shall be an input logical flag. If .true., input matrix A will be used as temporary storage and overwritten. This avoids internal data allocation. This is an intent(in) argument.
rank (optional): Shall be an integer scalar value, that contains the rank of input matrix A. This is an intent(out) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Returns an array value that represents the solution to the least squares system.
Raises LINALG_ERROR if the underlying Singular Value Decomposition process did not converge.
Raises LINALG_VALUE_ERROR if the matrix and right-hand-side vector have invalid/incompatible sizes.
Exceptions trigger an error stop.
{!example/linalg/example_lstsq2.f90!}Stable
This subroutine computes the internal working space requirements for the least-squares solver, [[stdlib_linalg(module):solve_lstsq(interface)]] .
call [[stdlib_linalg(module):lstsq_space(interface)]] (a, b, lrwork, liwork [, lcwork])
a: Shall be a rank-2 real or complex array containing the linear system coefficient matrix. It is an intent(in) argument.
b: Shall be a rank-1 or rank-2 array of the same kind as a, containing the system's right-hand-side vector(s). It is an intent(in) argument.
lrwork: Shall be an integer scalar, that returns the minimum array size required for the real working storage to this system.
liwork: Shall be an integer scalar, that returns the minimum array size required for the integer working storage to this system.
lcwork (complex a, b): For a complex system, shall be an integer scalar, that returns the minimum array size required for the complex working storage to this system.
constrained_lstsq - Compute the solution of the equality-constrained least-squares problem {#constrained-lstsq}
Experimental
This function computes the solution (x) of the equality-constrained linear least-squares problem
$$
\begin{aligned}
\mathrm{minimize} & \quad | Ax - b |^2 \
\mathrm{subject~to} & \quad Cx = d,
\end{aligned}
$$
where (A) is an ( m \times n ) matrix (with (m \geq n)) and �(C) a ( p \times n) matrix (with (p \leq n)). The solver is based on LAPACK's *GLSE backends.
x = [[stdlib_linalg(module):constrained_lstsq(interface)]] (A, b, C, d[, overwrite_matrices, err])
a: Shall be a rank-2 real or complex array used in the definition of the least-squares cost. It is an intent(inout) argument.
b: Shall be a rank-1 array of the same kind as a appearing in the definition of the least-squares cost. It is an intent(inout) argument.
c: Shall be a rank-2 real or complex array of the same kind as a defining the linear equality constraints. It is an intent(inout) argument.
d: Shall be a rank-1 array of the same kind as a appearing in the definition of the linear equality constraints.
overwrite_matrices (optional): Shall be an input logical flag. If .true., the input matrices and vectors will be overwritten during the computation of the solution. It is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Returns an array of the same kind as a containing the solution of the equality constrained least-squares problem.
Raises LINALG_ERROR if the underlying constrained least-squares solver did not converge.
Raises LINALG_VALUE_ERROR if the matrices and vectors have invalid/incompatible dimensions.
Exceptions trigger an error stop.
{!example/linalg/example_constrained_lstsq1.f90!}solve_constrained_lstsq - Compute the solution of the equality-constrained least squares problem (subroutine interface) {#solve-constrained-lstsq}
Experimental
This subroutine computes the solution (x) of the equality-constrained linear least-squares problem
$$
\begin{aligned}
\mathrm{minimize} & \quad | Ax - b |^2 \
\mathrm{subject~to} & \quad Cx = d,
\end{aligned}
$$
where (A) is an ( m \times n ) matrix (with (m \geq n)) and �(C) a ( p \times n) matrix (with (p \leq n)). The solver is based on LAPACK's *GLSE backends.
call [[stdlib_linalg(module):solve_constrained_lstsq(interface)]] (a, b, c, d, x [, storage, overwrite_matrices, err])
a: Shall be a rank-2 real or complex array used in the definition of the least-squares cost. It is an intent(inout) argument.
b: Shall be a rank-1 array of the same kind as a appearing in the definition of the least-squares cost. It is an intent(inout) argument.
c: Shall be a rank-2 real or complex array of the same kind as a defining the linear equality constraints. It is an intent(inout) argument.
d: Shall be a rank-1 array of the same kind as a appearing in the definition of the linear equality constraints.
x: Shall be a rank-1 array of the same kind as a. On exit, it contains the solution of the constrained least-squares problem. It is an intent(out) argument.
storage (optional): Shall be a rank-1 array of the same kind as a providing working storage for the solver. Its minimum size can be determined with a call to [stdlib_linalg(module):constrained_lstsq_space(interface)]. It is an intent(out) argument.
overwrite_matrices (optional): Shall be an input logical flag. If .true., the input matrices and vectors will be overwritten during the computation of the solution. It is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
{!example/linalg/example_constrained_lstsq2.f90!}constrained_lstsq_space - Compute internal workspace requirements for the constrained least-square solver {#constrained-lstsq-space}
Experimental
This subroutine computes the internal workspace requirements for the constrained least-squares solver, [stdlib_linalg(module):solve_constrained_lstsq(interface)].
call [stdlib_linalg(module):constrained_lstsq_space(interface)](a, c, lwork [, err])
a: Shall be a rank-2 real or complex array used in the definition of the least-squares cost. It is an intent(in) argument.
c: Shall be a rank-2 real or complex array of the same kind as a defining the linear equality constraints. It is an intent(in) argument.
lwork: Shall be an integer scalar returning the optimal size required for the workspace array to solve the constrained least-squares problem.
Experimental
This function computes the generalized least-squares (GLS) solution to a linear matrix equation ( A \cdot x = b ) with correlated errors described by a covariance matrix ( W ).
The solver minimizes the Mahalanobis distance ( (Ax - b)^T W^{-1} (Ax - b) ) where ( W ) is a symmetric (real) or Hermitian (complex) positive definite covariance matrix. This is useful when observations have correlated errors. The solver is based on LAPACK's *GGGLM backends.
x = [[stdlib_linalg(module):generalized_lstsq(interface)]] (w, a, b [, prefactored_w, overwrite_a, overwrite_w, err])
w: Shall be a rank-2 real or complex symmetric (real) or Hermitian (complex) positive definite array containing the covariance matrix, or a valid matrix square root (e.g., Cholesky factor, SVD-based) if prefactored_w=.true.. It is an intent(inout) argument.
a: Shall be a rank-2 real or complex array containing the coefficient matrix. The matrix must have full column rank. It is an intent(inout) argument.
b: Shall be a rank-1 array of the same kind as a, containing the right-hand-side vector. It is an intent(in) argument.
prefactored_w (optional): Shall be an input logical flag. If .true., w is assumed to contain a matrix square root ( B ) such that ( W = B \cdot B^T ). This can be a Cholesky factor or any other valid square root (e.g., SVD-based). If a Cholesky factor is used, the upper triangular part must be zeroed out. It is the user's responsibility to ensure that the prefactored matrix is valid. Default: .false.. This is an intent(in) argument.
overwrite_a (optional): Shall be an input logical flag. If .true., input matrix a will be used as temporary storage and overwritten. This avoids internal data allocation. Default: .false.. This is an intent(in) argument.
overwrite_w (optional): Shall be an input logical flag. If .true., input matrix w will be used as temporary storage and overwritten. This avoids internal data allocation. Default: .false.. This is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Returns a rank-1 array of the same kind as a, containing the generalized least-squares solution.
Raises LINALG_VALUE_ERROR if the covariance matrix is not square or has incompatible dimensions.
Raises LINALG_ERROR if the covariance matrix is not positive definite or if the design matrix does not have full column rank.
Exceptions trigger an error stop.
{!example/linalg/example_generalized_lstsq.f90!}solve_generalized_lstsq - Solves the generalized least squares problem (subroutine) {#solve-generalized-lstsq}
Experimental
This subroutine computes the generalized least-squares (GLS) solution to a linear matrix equation ( A \cdot x = b ) with correlated errors described by a covariance matrix ( W ).
The solver minimizes the Mahalanobis distance ( (Ax - b)^T W^{-1} (Ax - b) ) where ( W ) is a symmetric (real) or Hermitian (complex) positive definite covariance matrix. Unlike generalized_lstsq, this subroutine interface allows the user to provide a pre-allocated solution vector x. The solver is based on LAPACK's *GGGLM backends.
call [[stdlib_linalg(module):solve_generalized_lstsq(interface)]] (w, a, b, x [, prefactored_w, overwrite_a, overwrite_w, err])
w: Shall be a rank-2 real or complex symmetric (real) or Hermitian (complex) positive definite array containing the covariance matrix, or a valid matrix square root (e.g., Cholesky factor, SVD-based) if prefactored_w=.true.. It is an intent(inout) argument.
a: Shall be a rank-2 real or complex array containing the coefficient matrix. The matrix must have full column rank. It is an intent(inout) argument.
b: Shall be a rank-1 array of the same kind as a, containing the right-hand-side vector. It is an intent(in) argument.
x: Shall be a rank-1 array of the same kind as a, containing the solution vector. It is an intent(out) argument.
prefactored_w (optional): Shall be an input logical flag. If .true., w is assumed to contain a matrix square root ( B ) such that ( W = B \cdot B^T ). This can be a Cholesky factor or any other valid square root (e.g., SVD-based). It is the user's responsibility to ensure that the prefactored matrix is valid. Default: .false.. This is an intent(in) argument.
overwrite_a (optional): Shall be an input logical flag. If .true., input matrix a will be used as temporary storage and overwritten. This avoids internal data allocation. Default: .false.. This is an intent(in) argument.
overwrite_w (optional): Shall be an input logical flag. If .true., input matrix w will be used as temporary storage and overwritten. This avoids internal data allocation. Default: .false.. This is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Returns the generalized least-squares solution in the pre-allocated rank-1 array x.
Raises LINALG_VALUE_ERROR if the covariance matrix is not square or has incompatible dimensions.
Raises LINALG_ERROR if the covariance matrix is not positive definite or if the design matrix does not have full column rank.
Exceptions trigger an error stop.
{!example/linalg/example_generalized_lstsq.f90!}Stable
This function computes the determinant of a real or complex square matrix.
This interface comes with a pure version det(a), and a non-pure version det(a,overwrite_a,err) that
allows for more expert control.
c = [[stdlib_linalg(module):det(interface)]] (a [, overwrite_a, err])
a: Shall be a rank-2 square array
overwrite_a (optional): Shall be an input logical flag. if .true., input matrix a will be used as temporary storage and overwritten. This avoids internal data allocation.
This is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Returns a real scalar value of the same kind of a that represents the determinant of the matrix.
Raises LINALG_ERROR if the matrix is singular.
Raises LINALG_VALUE_ERROR if the matrix is non-square.
Exceptions are returned to the err argument if provided; an error stop is triggered otherwise.
{!example/linalg/example_determinant.f90!}Stable
This operator returns the determinant of a real square matrix.
This interface is equivalent to the pure version of determinant [[stdlib_linalg(module):det(interface)]].
c = [[stdlib_linalg(module):operator(.det.)(interface)]] a
a: Shall be a rank-2 square array of any real or complex kinds. It is an intent(in) argument.
Returns a real scalar value that represents the determinant of the matrix.
Raises LINALG_ERROR if the matrix is singular.
Raises LINALG_VALUE_ERROR if the matrix is non-square.
Exceptions trigger an error stop.
{!example/linalg/example_determinant2.f90!}Experimental
This subroutine computes the QR factorization of a real or complex matrix: ( A = Q R ) where ( Q )
is orthonormal and ( R ) is upper-triangular. Matrix ( A ) has size [m,n], with ( m \ge n ).
The results are returned in output matrices ( Q ) and (R ), that have the same type and kind as ( A ).
Given k = min(m,n), one can write ( A = ( Q_1 Q_2 ) \cdot ( \frac{R_1}{0}) ).
Because the lower rows of ( R ) are zeros, a reduced problem ( A = Q_1 R_1 ) may be solved. The size of
the input arguments determines what problem is solved: on full matrices (shape(Q)==[m,m], shape(R)==[m,n]),
the full problem is solved. On reduced matrices (shape(Q)==[m,k], shape(R)==[k,n]), the reduced problem is solved.
call [[stdlib_linalg(module):qr(interface)]] (a, q, r [, pivots] [, overwrite_a] [, storage] [, err])
a: Shall be a rank-2 real or complex array containing the coefficient matrix of size [m,n]. It is an intent(in) argument, if overwrite_a=.false.. Otherwise, it is an intent(inout) argument, and is destroyed upon return.
q: Shall be a rank-2 array of the same kind as a, containing the orthonormal matrix q. It is an intent(out) argument. It should have a shape equal to either [m,m] or [m,k], whether the full or the reduced problem is sought for.
r: Shall be a rank-2 array of the same kind as a, containing the upper triangular matrix r. It is an intent(out) argument. It should have a shape equal to either [m,n] or [k,n], whether the full or the reduced problem is sought for.
pivots (optional): Shall be an integer array of size n. If provided, QR factorization with column-pivoting is being computed. It is an intent(out) argument.
overwrite_a (optional): Shall be an input logical flag (default: .false.). If .true., input matrix a will be used as temporary storage and overwritten. This avoids internal data allocation. It is an intent(in) argument.
storage (optional): Shall be a rank-1 array of the same type and kind as a, providing working storage for the solver. Its minimum size can be determined with a call to [[stdlib_linalg(module):qr_space(interface)]]. It is an intent(out) argument.
err (optional): Shall be a type(linalg_state_type) value. It is an intent(out) argument.
Returns the QR factorization matrices into the ( Q ) and ( R ) arguments and the optional pivots in pivots.
Raises LINALG_VALUE_ERROR if any of the matrices has invalid or unsuitable size for the full/reduced problem.
Raises LINALG_ERROR on insufficient user storage space.
If the state argument err is not present, exceptions trigger an error stop.
{!example/linalg/example_qr.f90!}
{!example/linalg/example_pivoting_qr.f90!}Experimental
This subroutine computes the internal working space requirements for the QR factorization, [[stdlib_linalg(module):qr(interface)]] .
call [[stdlib_linalg(module):qr_space(interface)]] (a, lwork, [, pivoting] [, err])
a: Shall be a rank-2 real or complex array containing the coefficient matrix. It is an intent(in) argument.
lwork: Shall be an integer scalar, that returns the minimum array size required for the working storage in [[stdlib_linalg(module):qr(interface)]] to factorize a.
pivoting (optional): Shall a logical flag (default: .false.). If .true., on exit lwork is the optimal workspace size for the QR factorization with column pivoting. If .false., lwork is the optimal workspace size for the standard QR factorization. It is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
{!example/linalg/example_qr_space.f90!}
{!example/linalg/example_pivoting_qr_space.f90!}Experimental
This subroutine computes the Schur decomposition of a real or complex matrix: ( A = Z T Z^H ), where ( Z ) is unitary (orthonormal) and ( T ) is upper-triangular (for complex matrices) or quasi-upper-triangular (for real matrices, with possible ( 2 \times 2 ) blocks on the diagonal). Matrix ( A ) has size [n,n].
The results are returned in output matrices ( T ) and ( Z ). Matrix ( T ) is the Schur form, and matrix ( Z ) is the unitary transformation matrix such that ( A = Z T Z^H ). If requested, the eigenvalues of ( T ) can also be returned as a complex array of size [n].
call [[stdlib_linalg(module):schur(interface)]] (a, t [, z,] [, eigvals] [, overwrite_a] [, storage] [, err])
-
a: Shall be a rank-2realorcomplexarray containing the matrix to be decomposed. It is anintent(inout)argument ifoverwrite_a = .true.; otherwise, it is anintent(in)argument. -
t: Shall be a rank-2 array of the same kind asa, containing the Schur form ( T ) of the matrix. It is anintent(out)argument and should have a shape of[n,n]. -
z: Shall be a rank-2 array of the same kind asa, containing the unitary matrix ( Z ). It is anintent(out)argument and is optional. If provided, it should have the shape[n,n]. -
eigvals(optional): Shall be a rank-1complexorrealarray of the same kind asa, containing the eigenvalues of ( A ) (the diagonal elements of ( T )), or theirrealcomponent only. The array must be of size[n]. If not provided, the eigenvalues are not returned. It is anintent(out)argument. -
overwrite_a(optional): Shall be alogicalflag (default:.false.). If.true., the input matrixawill be overwritten and destroyed upon return, avoiding internal data allocation. It is anintent(in)argument. -
storage(optional): Shall be a rank-1 array of the same type and kind asa, providing working storage for the solver. Its minimum size can be determined with a call to [[stdlib_linalg(module):schur_space(interface)]]. It is anintent(inout)argument. -
err(optional): Shall be atype(linalg_state_type)value. It is anintent(out)argument. If not provided, exceptions trigger anerror stop.
Returns the Schur decomposition matrices into the ( T ) and ( Z ) arguments. If eigvals is provided, it will also return the eigenvalues of the matrix ( A ).
Raises LINALG_VALUE_ERROR if any of the matrices have invalid or unsuitable size for the decomposition.
Raises LINALG_VALUE_ERROR if the real component is only requested, but the eigenvalues have non-trivial imaginary parts.
Raises LINALG_ERROR on insufficient user storage space.
If the state argument err is not present, exceptions trigger an error stop.
{!example/linalg/example_schur_eigvals.f90!}Experimental
This subroutine computes the internal working space requirements for the Schur decomposition, [[stdlib_linalg(module):schur(interface)]].
call [[stdlib_linalg(module):schur_space(interface)]] (a, lwork, [, err])
-
a: Shall be a rank-2realorcomplexarray containing the matrix to be decomposed. It is anintent(in)argument. -
lwork: Shall be anintegerscalar that returns the minimum array size required for the working storage in [[stdlib_linalg(module):schur(interface)]] to decomposea. It is anintent(out)argument. -
err(optional): Shall be atype(linalg_state_type)value. It is anintent(out)argument.
Returns the required working storage size lwork for the Schur decomposition. This value can be used to pre-allocate a workspace array in case multiple Schur decompositions of the same matrix size are needed. If pre-allocated working arrays are provided, no internal memory allocations will take place during the decomposition.
Stable
This subroutine computes the solution to the eigenproblem ( A \cdot \bar{v} - \lambda \cdot \bar{v} ),
where ( A ) is a square, full-rank, real or complex matrix, or to the generalized eigenproblem ( A \cdot \bar{v} - \lambda \cdot B \cdot \bar{v} ),
where ( B ) is a square matrix with the same type, kind and size as ( A ).
Result array lambda returns the eigenvalues of ( A ). The user can request eigenvectors to be returned: if provided, on output left will contain the left eigenvectors, right the right eigenvectors of ( A ).
Both left and right are rank-2 arrays, where eigenvectors are stored as columns.
The solver is based on LAPACK's *GEEV (standard eigenproblem) and *GGEV (generalized eigenproblem) backends.
For the standard eigenproblem:
call [[stdlib_linalg(module):eig(interface)]] (a, lambda [, right] [,left] [,overwrite_a] [,err])
For the generalized eigenproblem:
call [[stdlib_linalg(module):eig(interface)]] `(a, b, lambda [, right] [, left] [, overwrite_a] [, overwrite_b] [, err])
a : real or complex square array containing the coefficient matrix. If overwrite_a=.false., it is an intent(in) argument. Otherwise, it is an intent(inout) argument and is destroyed by the call.
b: real or complex square array containing the second coefficient matrix. If overwrite_b=.false., it is an intent(in) argument. Otherwise, it is an intent(inout) argument and is destroyed by the call.
lambda: Shall be a complex or real rank-1 array of the same kind as a, containing the eigenvalues, or their real component only. It is an intent(out) argument.
right (optional): Shall be a complex rank-2 array of the same size and kind as a, containing the right eigenvectors of a. It is an intent(out) argument.
left (optional): Shall be a complex rank-2 array of the same size and kind as a, containing the left eigenvectors of a. It is an intent(out) argument.
overwrite_a (optional): Shall be an input logical flag. if .true., input matrix a will be used as temporary storage and overwritten. This avoids internal data allocation. This is an intent(in) argument.
overwrite_b (optional): Shall be an input logical flag. If .true., input matrix b will be used as temporary storage and overwritten. This avoids internal data allocation. This is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Raises LINALG_ERROR if the calculation did not converge.
Raises LINALG_VALUE_ERROR if any matrix or arrays have invalid/incompatible sizes.
Raises LINALG_VALUE_ERROR if the real component is only requested, but the eigenvalues have non-trivial imaginary parts.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_eig.f90!}Stable
This subroutine computes the solution to the eigendecomposition ( A \cdot \bar{v} - \lambda \cdot \bar{v} ),
where ( A ) is a square, full-rank, real symmetric ( A = A^T ) or complex Hermitian ( A = A^H ) matrix.
Result array lambda returns the real eigenvalues of ( A ). The user can request the orthogonal eigenvectors
to be returned: on output vectors may contain the matrix of eigenvectors, returned as a column.
Normally, only the lower triangular part of ( A ) is accessed. On input, logical flag upper_a
allows the user to request what triangular part of the matrix should be used.
The solver is based on LAPACK's *SYEV and *HEEV backends.
call [[stdlib_linalg(module):eigh(interface)]] (a, lambda [, vectors] [, upper_a] [, overwrite_a] [,err])
a : real or complex square array containing the coefficient matrix. It is an intent(in) argument. If overwrite_a=.true., it is an intent(inout) argument and is destroyed by the call.
lambda: Shall be a complex rank-1 array of the same precision as a, containing the eigenvalues. It is an intent(out) argument.
vectors (optional): Shall be a rank-2 array of the same type, size and kind as a, containing the eigenvectors of a. It is an intent(out) argument.
upper_a (optional): Shall be an input logical flag. If .true., the upper triangular part of a will be accessed. Otherwise, the lower triangular part will be accessed. It is an intent(in) argument.
overwrite_a (optional): Shall be an input logical flag. If .true., input matrix a will be used as temporary storage and overwritten. This avoids internal data allocation. This is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Raises LINALG_ERROR if the calculation did not converge.
Raises LINALG_VALUE_ERROR if any matrix or arrays have invalid/incompatible sizes.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_eigh.f90!}Stable
This function computes the eigenvalues for either a standard or generalized eigenproblem:
- Standard eigenproblem: ( A \cdot \bar{v} - \lambda \cdot \bar{v} ), where ( A ) is a square, full-rank
realorcomplexmatrix. - Generalized eigenproblem: ( A \cdot \bar{v} - \lambda \cdot B \cdot \bar{v} ), where ( B ) is a square matrix with the same type and kind as ( A ).
The eigenvalues are stored in the result array lambda, which is complex (even for real input matrices).
The solver uses LAPACK's *GEEV and *GGEV backends for the standard and generalized problems, respectively.
For the standard eigenproblem:
lambda = [[stdlib_linalg(module):eigvals(interface)]] (a [, err])
For the generalized eigenproblem:
lambda = [[stdlib_linalg(module):eigvals(interface)]] (a, b [, err])
a:
Shall be a real or complex square array containing the coefficient matrix. It is an intent(in) argument.
b (optional):
Shall be a real or complex square array containing the second coefficient matrix for the generalized problem. It is an intent(in) argument.
err (optional):
Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Returns a complex rank-1 array containing the eigenvalues of the problem.
Raises LINALG_ERROR if the calculation did not converge.
Raises LINALG_VALUE_ERROR if any matrix or arrays have invalid/incompatible sizes.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_eigvals.f90!}Stable
This function returns the eigenvalues to matrix ( A ): a where ( A ) is a square, full-rank,
real symmetric ( A = A^T ) or complex Hermitian ( A = A^H ) matrix.
The eigenvalues are solutions to the eigenproblem ( A \cdot \bar{v} - \lambda \cdot \bar{v} ).
Result array lambda is real, and returns the eigenvalues of ( A ).
The solver is based on LAPACK's *SYEV and *HEEV backends.
lambda = [[stdlib_linalg(module):eigvalsh(interface)]] (a, [, upper_a] [,err])
a : real or complex square array containing the coefficient matrix. It is an intent(in) argument.
upper_a (optional): Shall be an input logical flag. If .true., the upper triangular part of a will be used accessed. Otherwise, the lower triangular part will be accessed (default). It is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Returns a real array containing the eigenvalues of a.
Raises LINALG_ERROR if the calculation did not converge.
Raises LINALG_VALUE_ERROR if any matrix or arrays have invalid/incompatible sizes.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_eigvalsh.f90!}Stable
This subroutine computes the singular value decomposition of a real or complex rank-2 array (matrix) ( A = U \cdot S \cdot \V^T ).
The solver is based on LAPACK's *GESDD backends.
Result vector s returns the array of singular values on the diagonal of ( S ).
If requested, u contains the left singular vectors, as columns of ( U ).
If requested, vt contains the right singular vectors, as rows of ( V^T ).
call [[stdlib_linalg(module):svd(interface)]] (a, s, [, u, vt, overwrite_a, full_matrices, err])
Subroutine
a: Shall be a rank-2 real or complex array containing the coefficient matrix of size [m,n]. It is an intent(inout) argument, but returns unchanged unless overwrite_a=.true..
s: Shall be a rank-1 real array, returning the list of k = min(m,n) singular values. It is an intent(out) argument.
u (optional): Shall be a rank-2 array of same kind as a, returning the left singular vectors of a as columns. Its size should be [m,m] unless full_matrices=.false., in which case, it can be [m,min(m,n)]. It is an intent(out) argument.
vt (optional): Shall be a rank-2 array of same kind as a, returning the right singular vectors of a as rows. Its size should be [n,n] unless full_matrices=.false., in which case, it can be [min(m,n),n]. It is an intent(out) argument.
overwrite_a (optional): Shall be an input logical flag. If .true., input matrix A will be used as temporary storage and overwritten. This avoids internal data allocation. By default, overwrite_a=.false.. It is an intent(in) argument.
full_matrices (optional): Shall be an input logical flag. If .true. (default), matrices u and vt shall be full-sized. Otherwise, their secondary dimension can be resized to min(m,n). See u, v for details.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Returns an array s that contains the list of singular values of matrix a.
If requested, returns a rank-2 array u that contains the left singular vectors of a along its columns.
If requested, returns a rank-2 array vt that contains the right singular vectors of a along its rows.
Raises LINALG_ERROR if the underlying Singular Value Decomposition process did not converge.
Raises LINALG_VALUE_ERROR if the matrix or any of the output arrays invalid/incompatible sizes.
Exceptions trigger an error stop, unless argument err is present.
{!example/linalg/example_svd.f90!}Stable
This subroutine computes the singular values of a real or complex rank-2 array (matrix) from its singular
value decomposition ( A = U \cdot S \cdot \V^T ). The solver is based on LAPACK's *GESDD backends.
Result vector s returns the array of singular values on the diagonal of ( S ).
s = [[stdlib_linalg(module):svdvals(interface)]] (a [, err])
a: Shall be a rank-2 real or complex array containing the coefficient matrix of size [m,n]. It is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Returns an array s that contains the list of singular values of matrix a.
Raises LINALG_ERROR if the underlying Singular Value Decomposition process did not converge.
Raises LINALG_VALUE_ERROR if the matrix or any of the output arrays invalid/incompatible sizes.
Exceptions trigger an error stop, unless argument err is present.
{!example/linalg/example_svdvals.f90!}Experimental
This subroutine computes the Cholesky factorization of a real or complex rank-2 square array (matrix),
( A = L \cdot L^T ), or ( A = U^T \cdot U ). ( A ) is symmetric or complex Hermitian, and ( L ),
( U ) are lower- or upper-triangular, respectively.
The solver is based on LAPACK's *POTRF backends.
call [[stdlib_linalg(module):cholesky(interface)]] (a, c, lower [, other_zeroed] [, err])
Subroutine
a: Shall be a rank-2 square real or complex array containing the coefficient matrix of size [n,n]. It is an intent(inout) argument, but returns unchanged if the argument c is present.
c (optional): Shall be a rank-2 square real or complex of the same size and kind as a. It is an intent(out) argument, that returns the triangular Cholesky matrix L or U.
lower: Shall be an input logical flag. If .true., the lower triangular decomposition ( A = L \cdot L^T ) will be performed. If .false., the upper decomposition ( A = U^T \cdot U ) will be performed.
other_zeroed (optional): Shall be an input logical flag. If .true., the unused part of the output matrix will contain zeroes. Otherwise, it will not be accessed. This saves cpu time. By default, other_zeroed=.true.. It is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. It is an intent(out) argument.
The factorized matrix is returned in-place overwriting a if no other arguments are provided.
Otherwise, it can be provided as a second argument c. In this case, a is not overwritten.
The logical flag lower determines whether the lower- or the upper-triangular factorization should be performed.
Results are returned on the applicable triangular region of the output matrix, while the unused triangular region
is filled by zeroes by default. Optional argument other_zeroed, if .false. allows the expert user to avoid zeroing the unused part;
however, in this case, the unused region of the matrix is not accessed and will usually contain invalid values.
Raises LINALG_ERROR if the underlying process did not converge.
Raises LINALG_VALUE_ERROR if the matrix or any of the output arrays invalid/incompatible sizes.
Exceptions trigger an error stop, unless argument err is present.
{!example/linalg/example_cholesky.f90!}Experimental
This is a pure functional interface for the Cholesky factorization of a real or
complex rank-2 square array (matrix) computed as ( A = L \cdot L^T ), or ( A = U^T \cdot U ).
( A ) is symmetric or complex Hermitian, and ( L ), ( U ) are lower- or upper-triangular, respectively.
The solver is based on LAPACK's *POTRF backends.
Result matrix c has the same size and kind as a, and returns the lower or upper triangular factor.
c = [[stdlib_linalg(module):chol(interface)]] (a, lower [, other_zeroed])
a: Shall be a rank-2 square real or complex array containing the coefficient matrix of size [n,n]. It is an intent(inout) argument, but returns unchanged if argument c is present.
lower: Shall be an input logical flag. If .true., the lower triangular decomposition ( A = L \cdot L^T ) will be performed. If .false., the upper decomposition ( A = U^T \cdot U ) will be performed.
other_zeroed (optional): Shall be an input logical flag. If .true., the unused part of the output matrix will contain zeroes. Otherwise, it will not be accessed. This saves cpu time. By default, other_zeroed=.true.. It is an intent(in) argument.
Returns a rank-2 array c of the same size and kind as a, that contains the triangular Cholesky matrix L or U.
Raises LINALG_ERROR if the underlying process did not converge.
Raises LINALG_VALUE_ERROR if the matrix or any of the output arrays invalid/incompatible sizes.
Exceptions trigger an error stop, unless argument err is present.
{!example/linalg/example_chol.f90!}Stable
This operator returns the inverse of a real or complex square matrix ( A ).
The inverse ( A^{-1} ) is defined such that ( A \cdot A^{-1} = A^{-1} \cdot A = I_n ).
This interface is equivalent to the function [[stdlib_linalg(module):inv(interface)]].
b = [[stdlib_linalg(module):operator(.inv.)(interface)]] a
a: Shall be a rank-2 square array of any real or complex kinds. It is an intent(in) argument.
Returns a rank-2 square array with the same type, kind and rank as a, that contains the inverse of a.
If an exception occurred on input errors, or singular matrix, NaNs will be returned.
For fine-grained error control in case of singular matrices prefer the subroutine and the function
interfaces.
{!example/linalg/example_inverse_operator.f90!}Stable
This subroutine inverts a square real or complex matrix in-place.
The inverse ( A^{-1} ) is defined such that ( A \cdot A^{-1} = A^{-1} \cdot A = I_n ).
On return, the input matrix a is replaced by its inverse.
The solver is based on LAPACK's *GETRF and *GETRI backends.
call [[stdlib_linalg(module):invert(interface)]] (a, [,inva] [, pivot] [, err])
a: Shall be a rank-2, square, real or complex array containing the coefficient matrix.
If inva is provided, it is an intent(in) argument.
If inva is not provided, it is an intent(inout) argument: on output, it is replaced by the inverse of a.
inva (optional): Shall be a rank-2, square, real or complex array with the same size, and kind as a.
On output, it contains the inverse of a.
pivot (optional): Shall be a rank-1 array of the same kind and matrix dimension as a, that contains the diagonal pivot indices on return. It is an intent(inout) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
Computes the inverse of the matrix ( A ), (A^{-1}, and returns it either in ( A ) or in another matrix.
Raises LINALG_ERROR if the matrix is singular or has invalid size.
Raises LINALG_VALUE_ERROR if inva and a do not have the same size.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_inverse_inplace.f90!}{!example/linalg/example_inverse_subroutine.f90!}Stable
This function returns the inverse of a square real or complex matrix in-place.
The inverse, ( A^{-1} ), is defined such that ( A \cdot A^{-1} = A^{-1} \cdot A = I_n ).
The solver is based on LAPACK's *GETRF and *GETRI backends.
b [[stdlib_linalg(module):inv(interface)]] (a, [, err])
a: Shall be a rank-2, square, real or complex array containing the coefficient matrix. It is an intent(inout) argument.
err (optional): Shall be a type(linalg_state_type) value. It is an intent(out) argument.
Returns an array value of the same type, kind and rank as a, that contains the inverse matrix (A^{-1}).
Raises LINALG_ERROR if the matrix is singular or has invalid size.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_inverse_function.f90!}Experimental
This function computes the Moore-Penrose pseudo-inverse of a real or complex matrix.
The pseudo-inverse, ( A^{+} ), generalizes the matrix inverse and satisfies the conditions:
- ( A \cdot A^{+} \cdot A = A )
- ( A^{+} \cdot A \cdot A^{+} = A^{+} )
- ( (A \cdot A^{+})^T = A \cdot A^{+} )
- ( (A^{+} \cdot A)^T = A^{+} \cdot A )
The computation is based on singular value decomposition (SVD). Singular values below a relative tolerance threshold ( \text{rtol} \cdot \sigma_{\max} ), where ( \sigma_{\max} ) is the largest singular value, are treated as zero.
b = [[stdlib_linalg(module):pinv(interface)]] (a, [, rtol, err])
a: Shall be a rank-2, real or complex array of shape [m, n] containing the coefficient matrix.
It is an intent(in) argument.
rtol (optional): Shall be a scalar real value specifying the relative tolerance for singular value cutoff.
If rtol is not provided, the default relative tolerance is ( \text{rtol} = \text{max}(m, n) \cdot \epsilon ),
where ( \epsilon ) is the machine precision for the element type of a. It is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. It is an intent(out) argument.
Returns an array value of the same type, kind, and rank as a with shape [n, m], that contains the pseudo-inverse matrix ( A^{+} ).
Raises LINALG_ERROR if the underlying SVD did not converge.
Raises LINALG_VALUE_ERROR if a has invalid size.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_pseudoinverse.f90!}Experimental
This subroutine computes the Moore-Penrose pseudo-inverse of a real or complex matrix.
The pseudo-inverse ( A^{+} ) is a generalization of the matrix inverse and satisfies the following properties:
- ( A \cdot A^{+} \cdot A = A )
- ( A^{+} \cdot A \cdot A^{+} = A^{+} )
- ( (A \cdot A^{+})^T = A \cdot A^{+} )
- ( (A^{+} \cdot A)^T = A^{+} \cdot A )
The computation is based on singular value decomposition (SVD). Singular values below a relative tolerance threshold ( \text{rtol} \cdot \sigma_{\max} ), where ( \sigma_{\max} ) is the largest singular value, are treated as zero.
On return, matrix pinva [n, m] will store the pseudo-inverse of a [m, n].
call [[stdlib_linalg(module):pseudoinvert(interface)]] (a, pinva [, rtol] [, err])
a: Shall be a rank-2, real or complex array containing the coefficient matrix.
It is an intent(in) argument.
pinva: Shall be a rank-2 array of the same kind as a, and size equal to that of transpose(a).
On output, it contains the Moore-Penrose pseudo-inverse of a.
rtol (optional): Shall be a scalar real value specifying the relative tolerance for singular value cutoff.
If not provided, the default threshold is ( \text{max}(m, n) \cdot \epsilon ), where ( \epsilon ) is the
machine precision for the element type of a.
err (optional): Shall be a type(linalg_state_type) value. It is an intent(out) argument.
Computes the Moore-Penrose pseudo-inverse of the matrix ( A ), ( A^{+} ), and returns it in matrix pinva.
Raises LINALG_ERROR if the underlying SVD did not converge.
Raises LINALG_VALUE_ERROR if pinva and a have degenerate or incompatible sizes.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_pseudoinverse.f90!}Experimental
This operator returns the Moore-Penrose pseudo-inverse of a real or complex matrix ( A ).
The pseudo-inverse ( A^{+} ) is computed using Singular Value Decomposition (SVD), and singular values
below a given threshold are treated as zero.
This interface is equivalent to the function [[stdlib_linalg(module):pinv(interface)]].
b = [[stdlib_linalg(module):operator(.pinv.)(interface)]] a
a: Shall be a rank-2 array of any real or complex kinds, with arbitrary dimensions ( m \times n ). It is an intent(in) argument.
Returns a rank-2 array with the same type, kind, and rank as a, that contains the Moore-Penrose pseudo-inverse of a.
If an exception occurs, or if the input matrix is degenerate (e.g., rank-deficient), the returned matrix will contain NaNs.
For more detailed error handling, it is recommended to use the subroutine or function interfaces.
{!example/linalg/example_pseudoinverse.f90!}Experimental
This pure subroutine interface computes one of several vector norms of real or complex array ( A ), depending on
the value of the order input argument. ( A ) may be an array of any rank.
Result nrm returns a real, scalar norm value for the whole array; if dim is specified, nrm is a rank n-1
array with the same shape as (A ) and dimension dim dropped, containing all norms evaluated along dim.
call [[stdlib_linalg(module):get_norm(interface)]] (a, nrm, order, [, dim, err])
a: Shall be a rank-n real or complex array containing the data. It is an intent(in) argument.
nrm: if dim is absent, shall be a scalar with the norm evaluated over all the elements of the array. Otherwise, an array of rank n-1, and a shape similar
to that of a with dimension dim dropped.
order: Shall be an integer value or a character flag that specifies the norm type, as follows. It is an intent(in) argument.
| Integer input | Character Input | Norm type |
|---|---|---|
-huge(0) |
'-inf', '-Inf' |
Minimum absolute value ( \min_i{ \left |
1 |
'1' |
1-norm ( \sum_i{ \left |
2 |
'2' |
Euclidean norm ( \sqrt{\sum_i{ a_i^2 }} ) |
>=3 |
'3','4',... |
p-norm ( \left( \sum_i{ \left |
huge(0) |
'inf', 'Inf' |
Maximum absolute value ( \max_i{ \left |
dim (optional): Shall be a scalar integer value with a value in the range from 1 to n, where n is the rank of the array. It is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument. If err is not present, the function is pure.
By default, the return value nrm is a scalar, and contains the norm as evaluated over all elements of the generic-rank array ( A ).
If the optional dim argument is present, nrm is a rank n-1 array with the same shape as ( A ) except
for dimension dim, that is collapsed. Each element of nrm contains the 1D norm of the elements of ( A ),
evaluated along dimension dim only.
Raises LINALG_ERROR if the requested norm type is invalid.
Raises LINALG_VALUE_ERROR if any of the arguments has an invalid size.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_get_norm.f90!}Experimental
This function computes one of several vector norms of real or complex array ( A ), depending on
the value of the order input argument. ( A ) may be an array of any rank.
x = [[stdlib_linalg(module):norm(interface)]] (a, order, [, dim, err])
a: Shall be a rank-n real or complex array containing the data. It is an intent(in) argument.
order: Shall be an integer value or a character flag that specifies the norm type, as follows. It is an intent(in) argument.
| Integer input | Character Input | Norm type |
|---|---|---|
-huge(0) |
'-inf', '-Inf' |
Minimum absolute value ( \min_i{ \left |
1 |
'1' |
1-norm ( \sum_i{ \left |
2 |
'2' |
Euclidean norm ( \sqrt{\sum_i{ a_i^2 }} ) |
>=3 |
'3','4',... |
p-norm ( \left( \sum_i{ \left |
huge(0) |
'inf', 'Inf' |
Maximum absolute value ( \max_i{ \left |
dim (optional): Shall be a scalar integer value with a value in the range from 1 to n, where n is the rank of the array. It is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument. If err is not present, the function is pure.
By default, the return value x is a scalar, and contains the norm as evaluated over all elements of the generic-rank array ( A ).
If the optional dim argument is present, x is a rank n-1 array with the same shape as ( A ) except
for dimension dim, that is dropped. Each element of x contains the 1D norm of the elements of ( A ),
evaluated along dimension dim only.
Raises LINALG_ERROR if the requested norm type is invalid.
Raises LINALG_VALUE_ERROR if any of the arguments has an invalid size.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_norm.f90!}Experimental
This function computes one of several matrix norms of real or complex array ( A ), depending on
the value of the order input argument. ( A ) must be an array of rank 2 or higher. For arrays of rank > 2,
matrix norms are computed over specified dimensions.
x = [[stdlib_linalg(module):mnorm(interface)]] (a [, order, dim, err])
a: Shall be a rank-n real or complex array containing the data, where n >= 2. It is an intent(in) argument.
order (optional): Shall be an integer value or a character flag that specifies the norm type, as follows. It is an intent(in) argument.
| Integer input | Character Input | Norm type |
|---|---|---|
1 |
'1' |
1-norm (maximum column sum) ( \max_j \sum_i{ \left |
2 |
'2' |
2-norm (largest singular value) |
| (not prov.) | 'Euclidean','Frobenius','Fro' |
Frobenius norm ( \sqrt{\sum_{i,j}{ \left |
huge(0) |
'inf', 'Inf', 'INF' |
Infinity norm (maximum row sum) ( \max_i \sum_j{ \left |
dim (optional): For arrays of rank > 2, shall be an integer array of size 2 specifying the dimensions over which to compute the matrix norm. Default value is [1,2]. It is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
For rank-2 input arrays, the return value x is a scalar containing the matrix norm.
For arrays of rank > 2, if the optional dim argument is present, x is a rank n-2 array with the same shape as ( A ) except
for dimensions dim(1) and dim(2), which are dropped. Each element of x contains the matrix norm of the corresponding submatrix of ( A ),
evaluated over the specified dimensions only, with the given order.
If an invalid norm type is provided, defaults to 1-norm and raises LINALG_ERROR.
Raises LINALG_VALUE_ERROR if any of the arguments has an invalid size.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_mnorm.f90!}Experimental
Given a matrix (A), this function computes its matrix exponential (E = \exp(A)) using a Pade approximation.
E = [[stdlib_linalg(module):expm(interface)]] (a [, order])
a: Shall be a rank-2 real or complex array containing the data. It is an intent(in) argument.
order (optional): Shall be a non-negative integer value specifying the order of the Pade approximation. By default order=10. It is an intent(in) argument.
The returned array E contains the Pade approximation of (\exp(A)).
If A is non-square or order is negative, it raises a LINALG_VALUE_ERROR.
{!example/linalg/example_expm.f90!}Experimental
Given a matrix (A), this function computes its matrix exponential (E = \exp(A)) using a Pade approximation.
call [[stdlib_linalg(module):matrix_exp(interface)]] (a [, e, order, err])
a: Shall be a rank-2 real or complex array containing the data. If e is not passed, it is an intent(inout) argument and is overwritten on exit by the matrix exponential. If e is passed, it is an intent(in) argument and is left unchanged.
e (optional): Shall be a rank-2 real or complex array with the same dimensions as a. It is an intent(out) argument. On exit, it contains the matrix exponential of a.
order (optional): Shall be a non-negative integer value specifying the order of the Pade approximation. By default order=10. It is an intent(in) argument.
err (optional): Shall be a type(linalg_state_type) value. This is an intent(out) argument.
The returned array A (in-place) or E (out-of-place) contains the Pade approximation of (\exp(A)).
If A is non-square or order is negative, it raises a LINALG_VALUE_ERROR.
If err is not present, exceptions trigger an error stop.
{!example/linalg/example_matrix_exp.f90!}