Cotangent
Base.Math.cot
— Functioncot(x)
Compute the cotangent of x
, where x
is in radians.
cot(A::AbstractMatrix)
Compute the matrix cotangent of a square matrix A
.
Base.Math.cotd
— Functioncotd(x)
Compute the cotangent of x
, where x
is in degrees.
Base.Math.coth
— Functioncoth(x)
Compute the hyperbolic cotangent of x
.
coth(A::AbstractMatrix)
Compute the matrix hyperbolic cotangent of square matrix A
.
Base.Math.acot
— Functionacot(x)
Compute the inverse cotangent of x
, where the output is in radians.
acot(A::AbstractMatrix)
Compute the inverse matrix cotangent of A
.
Base.Math.acotd
— Functionacotd(x)
Compute the inverse cotangent 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.acoth
— Functionacoth(x)
Compute the inverse hyperbolic cotangent of x
.
acoth(A::AbstractMatrix)
Compute the inverse matrix hyperbolic cotangent of A
.