pow
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
| Definido en el archivo de encabezado <math.h>
|
||
float powf( float base, float exp ); |
(desde C99) | |
double pow( double base, double exp ); |
||
long double powl( long double base, long double exp ); |
(desde C99) | |
Calcula el valor de
base elevado a la potencia exp o iexp .Original:
Computes the value of
base raised to the power exp or iexp.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parámetros
| base | - | base como valor de punto flotante
Original: base as floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| exp | - | exponente como valor de punto flotante
Original: exponent as floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| iexp | - | exponente como valor entero
Original: exponent as integer value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
base planteada por el poder (o exp iexp) . Original:
base raised by power (exp or iexp). The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Error de dominio si
base es 0 y exp es menor que o igual a 0. NAN se devuelve en ese caso .Original:
Domain error occurs if
base is 0 and exp is less than or equal to 0. NAN is returned in that case.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Error de dominio si
base es negativo y exp no es un valor entero. NAN se devuelve en ese caso .Original:
Domain error occurs if
base is negative and exp is not an integer value. NAN is returned in that case.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Rango de error se produce si un overflow ocurre.
HUGEVAL se devuelve en ese caso .Original:
Range error occurs if an overflow takes place.
HUGEVAL is returned in that case.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Ver también
regresa e elevado a la potencia dada (ex) Original: returns e raised to the given power (ex) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
calcula natural (base e) logaritmo (base e) (ln(x)) Original: computes natural (base e) logarithm (to base e) (ln(x)) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
calcula la raíz cuadrada (√x) Original: computes square root (√x) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
(C99) |
calcula cúbico raíz (3√x) Original: computes cubic root (3√x) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) |
Documentación de C++ para pow
| |