diff options
Diffstat (limited to 'docs/source/arduino/sqrt.rst')
-rw-r--r-- | docs/source/arduino/sqrt.rst | 33 |
1 files changed, 11 insertions, 22 deletions
diff --git a/docs/source/arduino/sqrt.rst b/docs/source/arduino/sqrt.rst index 5b8a73e..4263345 100644 --- a/docs/source/arduino/sqrt.rst +++ b/docs/source/arduino/sqrt.rst @@ -1,33 +1,22 @@ .. _arduino-sqrt: -sqrt(x) -======= - -Description ------------ +sqrt() +====== Calculates the square root of a number. +Library Documentation +--------------------- +.. doxygenfunction:: sqrt -Parameters ----------- - -x: the number, any data type - - - -Returns -------- +Arduino Compatibility +--------------------- -double, the number's square root. +The Maple versino of ``sqrt()`` is compatible with Arduino. - - -See also +See Also -------- - -- `pow <http://arduino.cc/en/Reference/Pow>`_\ () -- `sq <http://arduino.cc/en/Reference/Sq>`_\ () - +- :ref:`pow <arduino-pow>` +- :ref:`sq <arduino-sq>` |