Secant
Base.Math.sec
— Functionsec(x)
Compute the secant of x
, where x
is in radians.
sec(A::AbstractMatrix)
Compute the matrix secant of a square matrix A
.
Base.Math.secd
— Functionsecd(x)
Compute the secant of x
, where x
is in degrees.
Base.Math.sech
— Functionsech(x)
Compute the hyperbolic secant of x
.
sech(A::AbstractMatrix)
Compute the matrix hyperbolic secant of square matrix A
.
Base.Math.asec
— Functionasec(x)
Compute the inverse secant of x
, where the output is in radians.
asec(A::AbstractMatrix)
Compute the inverse matrix secant of A
.
Base.Math.asecd
— Functionasecd(x)
Compute the inverse secant of x
, where the output is in degrees. If x
is a matrix, x
needs to be a square matrix.
Matrix arguments require Julia 1.7 or later.
Base.Math.asech
— Functionasech(x)
Compute the inverse hyperbolic secant of x
.
asech(A::AbstractMatrix)
Compute the inverse matrix hyperbolic secant of A
.