JLCF64LinearAlgebraΒΆ
jla64.spad line 395 [edit on github]
Linear Algebra functions computed using JL
and its algorithms. 64 bits version.
- conditionNumber: (JLComplexF64Matrix, JLFloat64) -> JLFloat64
conditionNumber(m)
computes thep
-condition number ofm
.
- conditionNumber: JLComplexF64Matrix -> JLFloat64
conditionNumber(m)
computes the condition number ofm
.
- condSkeel: JLComplexF64Matrix -> JLFloat64
condsKeel(
m
) computes the Skeel condition number ofm
.
- eigen!: JLComplexF64Matrix -> Record(values: JLComplexF64Vector, vectors: JLComplexF64Matrix)
eigen!(m)
computes the spectral decomposition ofm
but overwritesm
to save memory space.
- eigen: JLComplexF64Matrix -> Record(values: JLComplexF64Vector, vectors: JLComplexF64Matrix)
eigen(m)
computes the spectral decomposition ofm
.
- eigenSystem!: JLComplexF64Matrix -> Record(values: JLComplexF64Vector, leftVectors: JLComplexF64Matrix, rightVectors: JLComplexF64Matrix)
eigenSystem!(m)
computes the spectral decomposition ofm
but overwritesm
to save memory space.
- eigenSystem: JLComplexF64Matrix -> Record(values: JLComplexF64Vector, leftVectors: JLComplexF64Matrix, rightVectors: JLComplexF64Matrix)
eigenSystem(m)
computes the spectral decomposition ofm
.
- eigvals!: JLComplexF64Matrix -> JLComplexF64Vector
eigvals!(m)
returns the eigen values ofm
but overwritesm
to save memory space.
- eigvals: JLComplexF64Matrix -> JLComplexF64Vector
eigvals(m)
returns the eigen values ofm
.
- eigvecs: JLComplexF64Matrix -> JLComplexF64Matrix
eigvecs(m)
returns the eigen vectors ofm
.
- exp: JLComplexF64Matrix -> JLComplexF64Matrix
exp(m)
returns the matrix exponential ofm
.
- log: JLComplexF64Matrix -> JLComplexF64Matrix
log(m)
tries to compute the principal matrix logarithm ofm
. Otherwise, returns a non pricipal matrix logarithm ofm
if possible.
- mpInverse: JLComplexF64Matrix -> JLComplexF64Matrix
mpInverse(m)
returns the Moore-Penrose pseudo inverse ofm
.
- norm: (JLComplexF64Matrix, JLFloat64) -> JLFloat64
norm(m,p)
computes thep
-norm ofm
.
- norm: (JLComplexF64Vector, JLFloat64) -> JLFloat64
norm(v,p)
computes thp
-norm ofv
.
- norm: JLComplexF64Matrix -> JLFloat64
norm(m)
computes the 2-norm ofm
, also known as the Frobenius norm.
- norm: JLComplexF64Vector -> JLFloat64
norm(v)
computes the 2-norm ofv
.
- normalize!: JLComplexF64Matrix -> JLComplexF64Matrix
normalize!(m)
destructively normalizem
such that its norm equals to 1.
- normalize!: JLComplexF64Vector -> JLComplexF64Vector
normalize!(v)
destructively normalizev
such that norm(v
) equals to 1.
- normalize: JLComplexF64Matrix -> JLComplexF64Matrix
normalize(m)
returns normalizedm
such that its norm equals to 1.
- normalize: JLComplexF64Vector -> JLComplexF64Vector
normalize(v)
returns normalizedv
such that its norm equals to 1.
- operatorNorm: (JLComplexF64Matrix, JLFloat64) -> JLFloat64
operatorNorm(m,p)
computes the operator norm ofm
induced by the vectorp
-norm.
- operatorNorm: JLComplexF64Matrix -> JLFloat64
operatorNorm(m)
computes the operator norm ofm
induced by the vector 2-norm.
- rank!: (JLComplexF64Matrix, JLFloat64) -> NonNegativeInteger
rank!(m, tol)
computes rank ofm
. Counts singular value with magnitude greater than tol but overwritesm
to save memory space.
- rank: (JLComplexF64Matrix, JLFloat64) -> NonNegativeInteger
rank(m, tol)
computes rank ofm
. Counts singular value with magnitude greater than tol.
- solve!: (JLComplexF64Matrix, JLComplexF64Matrix) -> JLComplexF64Matrix
solve!(A,B)
solves the matrix equation A*X=B. OverwritesB
with matrixX
and returnsX
.
- solve: (JLComplexF64Matrix, JLComplexF64Matrix) -> JLComplexF64Matrix
solve(A,B)
solves the matrix equation A*X=B, and returnsX
.
- sqrt: JLComplexF64Matrix -> JLComplexF64Matrix
sqrt(m)
returns the principal square root ofm
.
- svd!: JLComplexF64Matrix -> Record(U: JLComplexF64Matrix, sv: JLFloat64Vector, Vt: JLComplexF64Matrix)
svd!(m)
is the same assvd
(m
) but overwites a to save memory space.
- svd: JLComplexF64Matrix -> Record(U: JLComplexF64Matrix, sv: JLFloat64Vector, Vt: JLComplexF64Matrix)
svd(m)
computes the singular value decompositionSVD
ofm
such thatSVD
.U
* diagonalMatrix(sv
) *SVD
.Vt
=m
.
- svdvals!: JLComplexF64Matrix -> JLFloat64Vector
svdvals!(m)
returns the singular values ofm
but overwritesm
to save memory space.
- svdvals: JLComplexF64Matrix -> JLFloat64Vector
svdvals(m)
returns the singular values ofm
.