Diferencia entre revisiones de «cos()»
De ArduWiki
(Página creada con «== Descripción == Calcula el coseno de un ángulo (en radianes). El resultado está comprendido entre -1 y 1. == Sintaxis == <pre> cos(rad); </pre> == Parámetros == ;ra...») |
(→Retornos) |
||
(No se muestran 7 ediciones intermedias de 2 usuarios) | |||
Línea 11: | Línea 11: | ||
== Retornos == | == Retornos == | ||
− | El coseno del ángulo [[ | + | 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(){ | ||
+ | Serial.begin(9600); | ||
+ | } | ||
+ | void loop(){ | ||
+ | for (float n=0; n<TWO_PI; n+=0.01){ | ||
+ | Serial.println(cos(n)); | ||
+ | } | ||
+ | } | ||
+ | </syntaxhighlight> | ||
== Vea también == | == Vea también == | ||
* [[sin()]] | * [[sin()]] | ||
* [[tan()]] | * [[tan()]] | ||
+ | * [[asin()]] | ||
+ | * [[acos()]] | ||
+ | * [[atan()]] | ||
+ | * [[PI]] | ||
== Referencias == | == Referencias == | ||
* [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 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));
}
}