Diferencia entre revisiones de «sq()»
De ArduWiki
(→Retorna) |
(→Referencias) |
||
(No se muestran 2 ediciones intermedias del mismo usuario) | |||
Línea 25: | Línea 25: | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Funciones matematicas</categorytree> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | == Referencias == | + | == Referencias externas == |
* [https://www.arduino.cc/reference/en/language/functions/math/sq/ Guia de referencia] | * [https://www.arduino.cc/reference/en/language/functions/math/sq/ Guia de referencia] | ||
− | [[Category:Funciones]] | + | [[Category:Funciones matematicas]] |
Revisión actual del 23:34 11 jun 2019
Contenido
Descripción
Calcula el cuadrado de un número: el número multiplicado por sí mismo.
Sintaxis
sq(valor); sq(variable);
Parametros
- valor
- numero a operar
- variable
- nombre de variable a operar
Retorna
El cuadrado del numero. Tipo long.
Advertencias
- Nada
Ejemplos
byte n = sq(3); //9
sq(n); //81
Vea también