pow()
Descripción
Calcula el valor de un número elevado a una potencia. Pow() se puede utilizar para elevar un número a una potencia fraccionaria. Esto es útil para la generación de aplicación exponencial de los valores o curvas.
Sintaxis
pow(base, exponent)
Parámetros
- base: el número (float)
- exponent: la potencia a la que se eleva la base (float)
Retornos
- El resultado de la exponenciación (double)
Ejemplo
void setup() {
Serial.begin(9600);
int x = 2;
int y = 3;
double z = pow(x, y);
Serial.print(x);
Serial.print(" raised to the power of ");
Serial.print(y);
Serial.print(" is ");
Serial.println(z);
}
void loop() {}
The result in Serial Monitor:
COM6
2 raised to the power of 3 is 8.00
Autoscroll
Clear output
9600 baud
Newline
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Disclosure: Some links in this section are Amazon affiliate links. If you make a purchase through these links, we may earn a commission at no extra cost to you.
Additionally, some links direct to products from our own brand, DIYables.
Additionally, some links direct to products from our own brand, DIYables.