Espaços nominais
Variantes
Acções

std::pow

Da cppreference.com
< cpp‎ | numeric‎ | math

 
 
Biblioteca numéricos
Funções matemáticas comuns
De ponto flutuante ambiente
Números complexos
Matrizes numéricas
Pseudo-aleatório de geração de números
Tempo de compilação aritmética racional (C++11)
Genéricos operações numéricas
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
 
Funções matemáticas comuns
Funções
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Operações básicas
Original:
Basic operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Funções exponenciais
Original:
Exponential functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)
Funções de poder
Original:
Power functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
pow
Funções trigonométricas e hiperbólicas
Original:
Trigonometric and hyperbolic functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
Erro e funções gamma
Original:
Error and gamma functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)
Número inteiro mais próximo de operações de ponto flutuante
Original:
Nearest integer floating point operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Flutuando funções de manipulação de pontos
Original:
Floating point manipulation functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
Classificação / Comparação
Original:
Classification/Comparison
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Constantes de macros
Original:
Macro constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)(C++11)(C++11)(C++11)(C++11)
 
Definido no cabeçalho <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) (até C++11)
double      pow( double base, int iexp );
(6) (até C++11)
long double pow( long double base, int iexp );
(7) (até C++11)
Calcula o valor de base elevado à potência exp ou 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)
Um conjunto de sobrecargas ou um modelo de função para todas as combinações de argumentos do tipo aritmética não cobertos por 1-3). Se algum argumento tem tipo integral, ele é convertido para double. Se algum argumento é long double, então o Promoted tipo de retorno é também long double, caso contrário, o tipo de retorno é sempre 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.

Índice

[editar] Parâmetros

base -
base como valor de ponto flutuante
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 -
expoente como valor de ponto flutuante
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 -
expoente como valor inteiro
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 levantada pela corrente (ou 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.
Domínio de erro ocorre se base é 0 e exp é inferior ou igual a 0. NAN é devolvido em 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.
Domínio de erro ocorre se base é negativo e exp não é um valor inteiro. NAN é devolvido em 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.
Faixa de erro ocorre se um estouro ocorre. HUGEVAL é devolvido em 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) retornos float até C + 11 (por sobrecarga 5), ​​mas retorna double desde C + 11 (por sobrecarga 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] Veja também

retorna e elevado à potência 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.

(função) [edit]
calcula natural (base e) logaritmo (de 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.

(função) [edit]
Calcula a raiz quadrada (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.

(função) [edit]
(C++11)
Calcula a raiz cúbica (3x)
Original:
computes cubic root (3x)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função) [edit]
potência complexa, um ou ambos os argumentos pode ser um número complexo
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.

(modelo de função) [edit]
aplica-se a função de dois std::pow valarrays ou um valarray e um 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.

(modelo de função) [edit]