MATLAB Function Reference |
反正切(inverse tangent)與反超正切(inverse hyperbolic tangent)
Syntax
Y = atan(X) Y = atanh(X)
Description
atan
與 atanh
函式針對陣列元素進行運算。函式的定義域與值域包含複數。角度以弧度(radian)為單位。
Y = atan(X)
回傳 X
中每個元素的反正切值(arctangent)。
Y = atanh(X)
回傳 X
中每個元素的反超正切值。
Examples
x = -20:0.01:20; plot(x,atan(x)) x = -0.99:0.01:0.99; plot(x,atanh(x))
Algorithm
See Also
assignin | atan2 |