Diferencia entre revisiones de «atan()»
De ArduWiki
(→Ejemplo) |
(→Referencias) |
||
(No se muestra una edición intermedia del mismo usuario) | |||
Línea 17: | Línea 17: | ||
== Ejemplo == | == Ejemplo == | ||
− | < | + | <syntaxhighlight lang="c++"> |
void setup(){ | void setup(){ | ||
Serial.begin(9600); | Serial.begin(9600); | ||
Línea 29: | Línea 29: | ||
} | } | ||
} | } | ||
− | </ | + | </syntaxhighlight> |
== Vea también == | == Vea también == | ||
Línea 42: | Línea 42: | ||
* [https://www.arduino.cc/reference/es/language/functions/time/millis/ Guia de referencia de Arduino] | * [https://www.arduino.cc/reference/es/language/functions/time/millis/ Guia de referencia de Arduino] | ||
− | [[Category:Funciones]] | + | [[Category:Funciones trigonometricas]] |
Revisión actual del 21:14 11 jun 2019
Contenido
Descripción
Calcula el arco cuyo tangente es el arco indicado.
Sintaxis
atan(arco);
Parámetros
- arco
- cualquier numero. Numero tipo float.
Retornos
Angulo en radianes float.
Advertencias
Nada.
Ejemplo
void setup(){
Serial.begin(9600);
}
void loop(){
for (float n=-100; n<100; n++){
Serial.print(atan(n));
Serial.print(" radianes, es sexagesimal = ");
float x = 360*atan(n)/TWO_PI;
Serial.println(x);
}
}