MATLAB Function Reference |
反餘割(inverse cosecant)與反超餘割(inverse hyperbolic cosecant)
Syntax
Y = acsc(X) Y = acsch(X)
Description
acsc
與 acsch
函式針對陣列元素進行運算。函式的定義域與值域包含複數。角度以弧度(radian)為單位。
Y = acsc(X)
回傳 X
中每個元素的反餘割值(arccosecant)。
Y = acsch(X)
回傳 X
中每個元素的反超餘割值。
Examples
x1 = -10:0.01:-1.01; x2 = 1.01:0.01:10; plot(x1,acsc(x1),x2,acsc(x2)) x1 = -20:0.01:-1; x2 = 1:0.01:20; plot(x1,acsch(x1),x2,acsch(x2))
Algorithm
See Also
acot, acoth | addframe |