Excerpt | ||
---|---|---|
| ||
tan(angle) Return the (trigonometric) tan function of an angle. |
Function: tan()
Return the (trigonometric) tan function of an angle.
...
Argument | Type | Description |
---|---|---|
angle | Number | The angle in radians. |
Examples
tan($degrees*pi/180)
Converts an angle in degrees to an angle in radians and returns the trigonometric tan function of the result.
...