blob: 3a06a8f451db2e21cc67be01bec7526189b5d88c (
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-sin:
sin(rad)
========
Description
-----------
Calculates the sine of an angle (in radians). The result will be
between -1 and 1.
Parameters
----------
rad: the angle in radians (*float*)
Returns
-------
the sine of the angle (*double*)
See also
--------
- `cos <http://arduino.cc/en/Reference/Cos>`_\ ()
- `tan <http://arduino.cc/en/Reference/Tan>`_\ ()
- `float <http://arduino.cc/en/Reference/Float>`_
- `double <http://arduino.cc/en/Reference/Double>`_
|