logb
Da cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
Definido no cabeçalho <math.h>
|
||
float logbf( float arg ); |
||
double logb( double arg ); |
||
long double logbl( long double arg ); |
||
Extrai o valor do expoente da
r|arg| como um assinado valor de ponto flutuante, para os não-zero arg, onde
arg
argumento de ponto flutuante, e devolve-lo como um valor de ponto flutuante. Formalmente, o resultado é a parte integrante da logr|arg| como um assinado valor de ponto flutuante, para os não-zero arg, onde
r
é FLT_RADIX. Se arg
é subnormal, ele é tratado como se fosse normalizada.Original:
Extracts the value of the exponent from the floating-point argument
r|arg| as a signed floating-point value, for non-zero arg, where
arg
, and returns it as a floating-point value. Formally, the result is the integral part of logr|arg| as a signed floating-point value, for non-zero arg, where
r
is FLT_RADIX. If arg
is subnormal, it is treated as though it was normalized.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.
Índice |
[editar] Parâmetros
arg | - | flutuando valor de ponto
Original: 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. |
[editar] Valor de retorno
O expoente de ponto flutuante.
Original:
The floating-point exponent.
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.
Erro de domínio ou intervalo pode ocorrer se
arg
é zero.Original:
Domain or range error may occur if
arg
is zero.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.
[editar] Notas
O valor do expoente retornado por logb é sempre 1 a menos do que o expoente retuned frexp por causa das exigências de normalização diferentes: para o expoente
| está entre 1 e
| é entre 0.5 e 1.
e
retornado por logb, |arg*r-e| está entre 1 e
r
(tipicamente entre 1 e 2), mas para o expoente e
retornado por frexp, |arg*2-e| é entre 0.5 e 1.
Original:
The value of the exponent returned by logb is always 1 less than the exponent retuned by frexp because of the different normalization requirements: for the exponent
| is between 1 and
| is between 0.5 and 1.
e
returned by logb, |arg*r-e| is between 1 and
r
(typically between 1 and 2), but for the exponent e
returned by frexp, |arg*2-e| is between 0.5 and 1.
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.
[editar] Exemplo
Esta seção está incompleta Motivo: sem exemplo |
[editar] Veja também
decompõe um número em significand e um poder de 2 Original: decomposes a number into significand and a power of 2 The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função) | |
(C99) |
extrai expoente do número Original: extracts exponent of the number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função) |
(C99) (C99) |
multiplica um número por FLT_RADIX elevado a uma potência Original: multiplies a number by FLT_RADIX raised to a power The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função) |