Cosecant
Base.Math.csc
— Functioncsc(x)
Compute the cosecant of x
, where x
is in radians.
csc(A::AbstractMatrix)
Compute the matrix cosecant of a square matrix A
.
Base.Math.cscd
— Functioncscd(x)
Compute the cosecant of x
, where x
is in degrees.
Base.Math.csch
— Functioncsch(x)
Compute the hyperbolic cosecant of x
.
csch(A::AbstractMatrix)
Compute the matrix hyperbolic cosecant of square matrix A
.
Base.Math.acsc
— Functionacsc(x)
Compute the inverse cosecant of x
, where the output is in radians.
acsc(A::AbstractMatrix)
Compute the inverse matrix cosecant of A
.
Base.Math.acscd
— Functionacscd(x)
Compute the inverse cosecant 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.acsch
— Functionacsch(x)
Compute the inverse hyperbolic cosecant of x
.
acsch(A::AbstractMatrix)
Compute the inverse matrix hyperbolic cosecant of A
.