Hyperbolic cosecant
Y = csch(X)
example
Y = csch(X) returns the hyperbolic cosecant of the elements of X. The csch function operates element-wise on arrays. The function accepts both real and complex inputs. All angles are in radians.
X
csch
collapse all
Create a vector and calculate the hyperbolic cosecant of each value.
X = [0 pi 2*pi 3*pi]; Y = csch(X)
Y = 1×4 Inf 0.0866 0.0037 0.0002
Plot the hyperbolic cosecant over the domain -π<x<0 and 0<x<π.
x1 = -pi+0.01:0.01:-0.01; x2 = 0.01:0.01:pi-0.01; y1 = csch(x1); y2 = csch(x2); plot(x1,y1,x2,y2) grid on
Input angles in radians, specified as a scalar, vector, matrix, or multidimensional array.
Data Types: single | double Complex Number Support: Yes
single
double
The hyperbolic cosecant of x is equal to the inverse of the hyperbolic sine
csch(x)=1sinh(x)=2ex−e−x.
In terms of the traditional cosecant function with a complex argument, the identity is
csch(x)=icsc(ix) .
This function fully supports tall arrays. For more information, see Tall Arrays.
This function fully supports GPU arrays. For more information, see Run MATLAB Functions on a GPU (Parallel Computing Toolbox).
This function fully supports distributed arrays. For more information, see Run MATLAB Functions with Distributed Arrays (Parallel Computing Toolbox).
acsch | cosh | csc | sinh
acsch
cosh
csc
sinh
You have a modified version of this example. Do you want to open this example with your edits?