Diferencia entre revisiones de «log()»
De ArduWiki
(→Parámetros) |
(→Retorno) |
||
Línea 11: | Línea 11: | ||
== Retorno == | == Retorno == | ||
− | Logaritmo natural del numero. | + | Logaritmo natural del numero. Es un numero tipo [[float]]. |
== Advertencias == | == Advertencias == |
Revisión del 20:09 2 jul 2018
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=0; i<250; i++) {
a = log(i) ;
Serial.print(i);
Serial.print("\t");
Serial.println(a);
}
}
void loop(){
//Nada
}