Documentation

acsch

Inverse hyperbolic cosecant

Syntax

Y = acsch(X)

Description

Y = acsch(X)returns the inverse hyperbolic cosecant for each element ofX.

Theacschfunction operates element-wise on arrays. The function's domains and ranges include complex values. All angles are in radians.

Examples

collapse all

Graph the inverse hyperbolic cosecant function over the domainsand.

x1 = 20:0。01:-1; x2 = 1:0.01:20; plot(x1,acsch(x1),x2,acsch(x2)) gridonxlabel('x') ylabel('y')

More About

collapse all

Inverse Hyperbolic Cosecant

For real values x in the domain x < 0 and x > 0 , the inverse hyperbolic cosecant satisfies

csch 1 ( z ) = sinh 1 ( 1 z ) = log ( 1 x + 1 x 2 + 1 ) .

For complex numbers z = x + i y , the callacsch(z)returns complex results.

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

See Also

|||

Introduced before R2006a

Was this topic helpful?