JLCF64LinearAlgebraΒΆ
jla64.spad line 399 [edit on github]
Linear Algebra functions computed using Julia 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 ofmbut overwritesmto 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 ofmbut overwritesmto 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 ofmbut overwritesmto 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 ofmif 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 normalizemsuch that its norm equals to 1.
- normalize!: JLComplexF64Vector -> JLComplexF64Vector
normalize!(v)destructively normalizevsuch that norm(v) equals to 1.
- normalize: JLComplexF64Matrix -> JLComplexF64Matrix
normalize(m)returns normalizedmsuch that its norm equals to 1.
- normalize: JLComplexF64Vector -> JLComplexF64Vector
normalize(v)returns normalizedvsuch that its norm equals to 1.
- operatorNorm: (JLComplexF64Matrix, JLFloat64) -> JLFloat64
operatorNorm(m,p)computes the operator norm ofminduced by the vectorp-norm.
- operatorNorm: JLComplexF64Matrix -> JLFloat64
operatorNorm(m)computes the operator norm ofminduced by the vector 2-norm.
- rank!: (JLComplexF64Matrix, JLFloat64) -> NonNegativeInteger
rank!(m, tol)computes rank ofm. Counts singular value with magnitude greater than tol but overwritesmto 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. OverwritesBwith matrixXand 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 decompositionSVDofmsuch thatSVD.U* diagonalMatrix(SVD.sv) *SVD.Vt=m.
- svdvals!: JLComplexF64Matrix -> JLFloat64Vector
svdvals!(m)returns the singular values ofmbut overwritesmto save memory space.
- svdvals: JLComplexF64Matrix -> JLFloat64Vector
svdvals(m)returns the singular values ofm.