The Wayback Machine - https://web.archive.org/web/20210507030600/https://es.cppreference.com/w/cpp/numeric/math/pow
Espacios de nombres
Variantes
Acciones

std::pow

De cppreference.com
< cpp‎ | numeric‎ | math
 
 
 
Funciones matemáticas comunes
Funciones
Operaciones básicas
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Funciones exponenciales
(C++11)
(C++11)
(C++11)
(C++11)
Funciones de potencias
(C++11)
(C++11)
pow
Funciones trigonométricas e hiperbólicas
(C++11)
(C++11)
(C++11)
Funciones de error y gamma
(C++11)
(C++11)
(C++11)
(C++11)
Operaciones de punto flotante del entero más cercano
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Funciones de manipulación de punto flotante
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
Clasificación/comparación
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Constantes de macro
(C++11)(C++11)(C++11)(C++11)(C++11)
 
Definido en el archivo de encabezado <cmath>
float       pow( float base, float exp );
(1)
double      pow( double base, double exp );
(2)
long double pow( long double base, long double exp );
(3)
Promoted    pow( Arithmetic base, Arithmetic exp );
(4) (desde C++11)
float       pow( float base, int iexp );
(5) (hasta C++11)
double      pow( double base, int iexp );
(6) (hasta C++11)
long double pow( long double base, int iexp );
(7) (hasta C++11)
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.
4)
Un conjunto de sobrecargas o una plantilla de función para todas las combinaciones de argumentos de tipo aritmético no cubiertos por 1-3). Si algún argumento es de tipo integral, que se convierte en double. Si algún argumento es long double, entonces el Promoted tipo de retorno es también long double, de lo contrario el tipo de retorno es siempre double .
Original:
A set of overloads or a function template for all combinations of arguments of arithmetic type not covered by 1-3). If any argument has integral type, it is cast to double. If any argument is long double, then the return type Promoted is also long double, otherwise the return type is always double.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Contenido

[editar] 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.

[editar] 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.
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.
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.
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.

[editar] Notas

pow(float, int) vuelve float hasta C + +11 (sobrecarga por 5), pero vuelve double desde C + +11 (sobrecarga por 4)
Original:
pow(float, int) returns float until C++11 (per overload 5) but returns double since C++11 (per overload 4)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Ver también

(C++11)(C++11)
Devuelve e elevada a la potencia dada (ex)
(función) [editar]
(C++11)(C++11)
Calcula el logaritmo natural (base e) (ln(x))
(función) [editar]
(C++11)(C++11)
Calcula la raíz cuadrada (x)
(función) [editar]
(C++11)(C++11)(C++11)
Calcula la raíz cúbica (3x)
(función) [editar]
potencia compleja, uno o ambos argumentos puede ser un número complejo
Original:
complex power, one or both arguments may be a complex number
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(plantilla de función) [editar]
aplica la función std::pow a dos o valarrays valarray una y un valor
Original:
applies the function std::pow to two valarrays or a valarray and a value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(plantilla de función) [editar]