Developer API

StableLinearAlgebra.mul_P!Function
mul_P!(A, p, B)

Evaluate the matrix product $A = P \cdot B,$ where $P$ is a permutation matrix represented by the vector of integers p.

source
mul_P!(A, B, p)

Evaluate the matrix product $A = B \cdot P,$ where $P$ is a permutation matrix represented by the vector of integers p.

source
StableLinearAlgebra.inv_P!Function
inv_P!(p⁻¹, p)

Calculate the inverse/transpose $P^{-1}=P^T$ of a permuation $P$ represented by the vector p, writing the result to p⁻¹.

source

LAPACK LinearAlgebra

StableLinearAlgebra.QRWorkspaceType
QRWorkspace{T<:Number, E<:Real}

Allocated space for calcuating the pivoted QR factorization using the LAPACK routines geqp3! and orgqr! while avoiding dynamic memory allocations.

source
StableLinearAlgebra.LUWorkspaceType
LUWorkspace{T<:Number, E<:Real}

Allocated space for calcuating the pivoted QR factorization using the LAPACK routine getrf!. Also interfaces with the getri! and getrs! routines for inverting matrices and solving linear systems respectively.

source
StableLinearAlgebra.inv_lu!Function
inv_lu!(A::AbstractMatrix{T}, ws::LUWorkspace{T}) where {T}

Calculate the inverse of the matrix A, overwriting A in-place. Also return $\log(|\det A^{-1}|)$ and $\textrm{sign}(\det A^{-1}).$

source
StableLinearAlgebra.ldiv_lu!Function
ldiv_lu!(A::AbstractMatrix{T}, B::AbstractMatrix{T}, ws::LUWorkspace{T}) where {T}

Calculate $B:= A^{-1} B,$ modifying $B$ in-place. The matrix $A$ is over-written as well. Also return $\log(|\det A^{-1}|)$ and $\textrm{sign}(\det A^{-1}).$

source
StableLinearAlgebra.det_lu!Function
det_lu!(A::AbstractMatrix{T}, ws::LUWorkspace{T}) where {T}

Return $\log(|\det A|)$ and $\textrm{sign}(\det A).$ Note that $A$ is left modified by this function.

source