Diferencia entre revisiones de «cos()»
De ArduWiki
(→Referencias) |
(→Retornos) |
||
(No se muestran 2 ediciones intermedias del mismo usuario) | |||
Línea 11: | Línea 11: | ||
== Retornos == | == Retornos == | ||
− | El coseno del ángulo [[float]]. | + | El coseno del ángulo [[float]]. Valores entre -1 y +1. |
== Advertencias == | == Advertencias == | ||
− | + | * El angulo debe estar expresado en radianes entre 0 y [[PI|TWO_PI]]. | |
− | == Ejemplo == | + | == Ejemplo 1 == |
− | < | + | <syntaxhighlight lang="c++"> |
+ | void setup(){ | ||
+ | Serial.begin(115200); | ||
+ | Serial.println(cos(0), 3); //1.000 | ||
+ | Serial.println(cos(HALF_PI/2), 3); //0.707 | ||
+ | Serial.println(cos(HALF_PI), 3); //0.000 | ||
+ | Serial.println(cos(PI), 3); //-1.000 | ||
+ | Serial.println(cos(PI+HALF_PI), 3); //0.000 | ||
+ | Serial.println(cos(TWO_PI), 3);} //1.000 | ||
+ | void loop(){ | ||
+ | //Nada | ||
+ | } | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | == Ejemplo 2 == | ||
+ | <syntaxhighlight lang="c++"> | ||
void setup(){ | void setup(){ | ||
Serial.begin(9600); | Serial.begin(9600); | ||
Línea 26: | Línea 41: | ||
} | } | ||
} | } | ||
− | </ | + | </syntaxhighlight> |
== Vea también == | == Vea también == |
Revisión actual del 22:39 24 jun 2019
Contenido
Descripción
Calcula el coseno de un ángulo (en radianes). El resultado está comprendido entre -1 y 1.
Sintaxis
cos(rad);
Parámetros
- rad
- el ángulo en radianes float
Retornos
El coseno del ángulo float. Valores entre -1 y +1.
Advertencias
- El angulo debe estar expresado en radianes entre 0 y TWO_PI.
Ejemplo 1
void setup(){
Serial.begin(115200);
Serial.println(cos(0), 3); //1.000
Serial.println(cos(HALF_PI/2), 3); //0.707
Serial.println(cos(HALF_PI), 3); //0.000
Serial.println(cos(PI), 3); //-1.000
Serial.println(cos(PI+HALF_PI), 3); //0.000
Serial.println(cos(TWO_PI), 3);} //1.000
void loop(){
//Nada
}
Ejemplo 2
void setup(){
Serial.begin(9600);
}
void loop(){
for (float n=0; n<TWO_PI; n+=0.01){
Serial.println(cos(n));
}
}