Computes the element-wise hyperbolic cosecant of the argument.
y = csch(x)
:x Real or complex array. : :y Real or complex array with same dimensions as x. :
Computes the element-wise hyperbolic cosecant of the argument. For real data the results are real.
x=`linspace`_(0.01,4,200);
x=[-x($:-1:1) %nan x];
`clf`_();
`plot`_(x,csch(x))