diff options
Diffstat (limited to 'source/arduino/sqrt.rst')
-rw-r--r-- | source/arduino/sqrt.rst | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/source/arduino/sqrt.rst b/source/arduino/sqrt.rst new file mode 100644 index 0000000..5b8a73e --- /dev/null +++ b/source/arduino/sqrt.rst @@ -0,0 +1,33 @@ +.. _arduino-sqrt: + +sqrt(x) +======= + +Description +----------- + +Calculates the square root of a number. + + + +Parameters +---------- + +x: the number, any data type + + + +Returns +------- + +double, the number's square root. + + + +See also +-------- + + +- `pow <http://arduino.cc/en/Reference/Pow>`_\ () +- `sq <http://arduino.cc/en/Reference/Sq>`_\ () + |