MATLAB Function Reference |
正切(Tangent)函數及超正切(hyperbolic tangent)函數
Syntax
Y = tan(X) Y = tanh(X)
Description
The tan
and tanh
函數是對陣列每個元素去做運算。函式的定義域與值域包含複數。角度以弧度(radian)為單位。
Examples
x = (-pi/2)+0.01:0.01:(pi/2)-0.01; plot(x,tan(x)) x = -5:0.01:5; plot(x,tanh(x))
tan(pi/2)
的值並非無限大而為浮點數精確度 eps
的倒數,這是因為 pi
是逼近真實圓周率 的浮點數。
Algorithm
See Also
symvar | tempdir |