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