JLF64MatrixTranscendentalFunctionsΒΆ
jla64.spad line 672 [edit on github]
Linear Algebra functions computed using JL
and its algorithms.
- acos: JLFloat64Matrix -> JLComplexF64Matrix
acos(m)
computes the inverse matrix cosine ofm
.
- acosd: JLFloat64Matrix -> JLComplexF64Matrix
acosd(m)
computes the inverse matrix cosine ofm
. Output is in degrees.
- acosh: JLFloat64Matrix -> JLComplexF64Matrix
acosh(m)
computes the inverse matrix hyperbolic cosine ofm
.
- acot: JLFloat64Matrix -> JLComplexF64Matrix
acot(m)
computes the inverse matrix cotangent ofm
.
- acotd: JLFloat64Matrix -> JLComplexF64Matrix
acotd(m)
computes the inverse matrix cotangent ofm
. Output is in degrees.
- acoth: JLFloat64Matrix -> JLComplexF64Matrix
acoth(m)
computes the inverse matrix hyperbolic cotangent ofm
.
- acsc: JLFloat64Matrix -> JLComplexF64Matrix
acsc(m)
computes the inverse matrix cosecant ofm
.
- acscd: JLFloat64Matrix -> JLComplexF64Matrix
acscd(m)
computes the inverse matrix cosecant ofm
. Output is in degrees.
- acsch: JLFloat64Matrix -> JLComplexF64Matrix
acsch(m)
computes the inverse matrix hyperbolic cosecant ofm
.
- asec: JLFloat64Matrix -> JLComplexF64Matrix
asec(m)
computes the inverse matrix secant ofm
.
- asecd: JLFloat64Matrix -> JLComplexF64Matrix
asecd(m)
computes the inverse matrix secant ofm
. Output is in degrees.
- asech: JLFloat64Matrix -> JLComplexF64Matrix
asech(m)
computes the inverse matrix hyperbolic secant ofm
.
- asin: JLFloat64Matrix -> JLComplexF64Matrix
asin(m)
computes the inverse matrix sine ofm
.
- asind: JLFloat64Matrix -> JLComplexF64Matrix
asind(m)
computes the inverse matrix sine ofm
. Output is in degrees.
- asinh: JLFloat64Matrix -> JLComplexF64Matrix
asinh(m)
computes the inverse matrix hyperbolic sine ofm
.
- atan: JLFloat64Matrix -> JLComplexF64Matrix
atan(m)
computes the inverse matrix tangent ofm
.
- atand: JLFloat64Matrix -> JLComplexF64Matrix
atand(m)
computes the inverse matrix tangent ofm
. Output is in degrees.
- atanh: JLFloat64Matrix -> JLComplexF64Matrix
atanh(m)
computes the inverse matrix hyperbolic tangent ofm
.
- cis: JLFloat64Matrix -> JLComplexF64Matrix
cis(x)
returns exp(%i*x) computed efficiently.
- cos: JLFloat64Matrix -> JLFloat64Matrix
cos(m)
computes the matrix cosine ofm
.
- cosd: JLFloat64Matrix -> JLFloat64Matrix
cosd(m)
computes the matrix cosine ofm
, wherem
is in degrees.
- cosh: JLFloat64Matrix -> JLFloat64Matrix
cosh(m)
computes the matrix hyperbolic cosine ofm
.
- cot: JLFloat64Matrix -> JLFloat64Matrix
cot(m)
computes the matrix cotangent ofm
.
- coth: JLFloat64Matrix -> JLFloat64Matrix
coth(m)
computes the matrix hyperbolic cotangent ofm
.
- csc: JLFloat64Matrix -> JLFloat64Matrix
csc(m)
computes the matrix cosecant ofm
.
- csch: JLFloat64Matrix -> JLFloat64Matrix
csch(m)
computes the matrix hyperbolic cosecant ofm
.
- sec: JLFloat64Matrix -> JLFloat64Matrix
sec(m)
computes the matrix secant ofm
.
- sech: JLFloat64Matrix -> JLFloat64Matrix
sech(m)
computes the matrix hyperbolic secant ofm
.
- sin: JLFloat64Matrix -> JLFloat64Matrix
sin(m)
computes the matrix sine ofm
.
- sind: JLFloat64Matrix -> JLFloat64Matrix
sind(m)
computes the matrix sine ofm
, wherem
is in degrees.
- sinh: JLFloat64Matrix -> JLFloat64Matrix
sinh(m)
computes the matrix hyperbolic sine ofm
.
- tan: JLFloat64Matrix -> JLFloat64Matrix
tan(m)
computes the matrix tangent ofm
.
- tand: JLFloat64Matrix -> JLFloat64Matrix
tand(m)
computes the matrix tangent ofm
, wherem
is in degrees.
- tanh: JLFloat64Matrix -> JLFloat64Matrix
tanh(m)
computes the matrix hyperbolic tangent ofm
.