blob: f31b35787f416daf55eccc42d5b78e58f0209521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
.. _arduino-tan:
tan(rad)
========
Description
-----------
Calculates the tangent of an angle (in radians). The result will be
between negative infinity and infinity.
Parameters
----------
rad: the angle in radians (*float*)
Returns
-------
The tangent of the angle (*double*)
See also
--------
- `sin <http://arduino.cc/en/Reference/Sin>`_\ ()
- `cos <http://arduino.cc/en/Reference/Cos>`_\ ()
- `float <http://arduino.cc/en/Reference/Float>`_
- `double <http://arduino.cc/en/Reference/Double>`_
|