Diferencia entre revisiones de «constrain()»
De ArduWiki
(→Ejemplo) |
|||
(No se muestran 5 ediciones intermedias del mismo usuario) | |||
Línea 14: | Línea 14: | ||
== Retorna == | == Retorna == | ||
* Retorna la '''variable''' si esta entre min y max. | * Retorna la '''variable''' si esta entre min y max. | ||
− | * Retorna la '''min''' si variable<nowiki><</nowiki> | + | * Retorna la '''min''' si variable <nowiki><</nowiki> min. |
− | * Retorna la '''max''' si variable<nowiki>></nowiki>max. | + | * Retorna la '''max''' si variable <nowiki>></nowiki> max. |
== Advertencias == | == Advertencias == | ||
Línea 21: | Línea 21: | ||
== Ejemplo == | == Ejemplo == | ||
+ | Limita los valores entre 10 y 150. | ||
+ | |||
<pre> | <pre> | ||
dato2 = constran(dato1, 10, 150); | dato2 = constran(dato1, 10, 150); | ||
Línea 26: | Línea 28: | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Funciones matematicas</categorytree> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | == 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 actual del 23:52 31 ene 2020
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 < min.
- Retorna la max si variable > max.
Advertencias
Nada.
Ejemplo
Limita los valores entre 10 y 150.
dato2 = constran(dato1, 10, 150);
Vea también