Diferencia entre revisiones de «log()»
De ArduWiki
(→Retorno) |
(→Vea también) |
||
(No se muestran 5 ediciones intermedias del mismo usuario) | |||
Línea 21: | Línea 21: | ||
void setup(){ | void setup(){ | ||
Serial.begin(9600); | Serial.begin(9600); | ||
− | for (byte i= | + | for (byte i=1; i<10; i++) { |
a = log(i) ; | a = log(i) ; | ||
Serial.print(i); | Serial.print(i); | ||
Línea 34: | Línea 34: | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Funciones matematicas</categorytree> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | [[Category:Funciones]] | + | == Referencias == |
+ | * [https://www.prometec.net/funciones1/ Funciones] - Prometec | ||
+ | * [https://www.prometec.net/funciones1/ Aprendiendo Arduino] - Enrique Crespo | ||
+ | |||
+ | [[Category:Funciones matematicas]] |
Revisión actual del 23:34 11 jun 2019
Contenido
Descripción
Logaritmo natural en base e.
Sintaxis
log(variable);
Parámetros
- variable
- Variable a evaluar.
Retorno
Logaritmo natural del numero. Es un numero tipo float.
Advertencias
Nada.
Ejemplo
float a;
void setup(){
Serial.begin(9600);
for (byte i=1; i<10; i++) {
a = log(i) ;
Serial.print(i);
Serial.print("\t");
Serial.println(a);
}
}
void loop(){
//Nada
}
Vea también
Referencias
- Funciones - Prometec
- Aprendiendo Arduino - Enrique Crespo