Diferencia entre revisiones de «constrain()»
De ArduWiki
(→Vea también) |
(→Referencia) |
||
Línea 38: | Línea 38: | ||
* [[map()]] | * [[map()]] | ||
− | == Referencia == | + | == Referencia externas == |
* [https://www.arduino.cc/reference/en/language/functions/math/constrain/ Guia de referencia] | * [https://www.arduino.cc/reference/en/language/functions/math/constrain/ Guia de referencia] | ||
− | [[Category:Funciones]] | + | [[Category:Funciones matematicas]] |
Revisión del 21:23 11 jun 2019
Contenido
Descripción
Restringe un número para estar dentro de un rango.
Sintaxis
constrain(variable, min, max);
Parámetros
- variable
- Nombre variable numerica a restringir. Cualquier tipo de dato.
- min
- valor minimo
- max
- valor maximo.
Retorna
- Retorna la variable si esta entre min y max.
- Retorna la min si variable<max.
- Retorna la max si variable>max.
Advertencias
Nada.
Ejemplo
dato2 = constran(dato1, 10, 150);