cpp/numeric/math/isnormal: differenze tra le versioni
Da cppreference.com.
m (r2.7.3) (Bot: Aggiungo de, en, es, fr, ja, pt, ru, zh) |
m (Use {{lc}}. Update links. Various fixes.) |
||
Riga 2: | Riga 2: | ||
{{cpp/title|isnormal}} | {{cpp/title|isnormal}} | ||
{{cpp/numeric/math/navbar}} | {{cpp/numeric/math/navbar}} | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{header | cmath}} |
− | {{ | + | {{| =c++11 | |
bool isnormal( float arg ); | bool isnormal( float arg ); | ||
}} | }} | ||
− | {{ | + | {{| sincec++11 | |
bool isnormal( double arg ); | bool isnormal( double arg ); | ||
}} | }} | ||
− | {{ | + | {{| sincec++11 | |
bool isnormal( long double arg ); | bool isnormal( long double arg ); | ||
}} | }} | ||
− | {{ | + | {{end}} |
{{tr|Determina se il dato floating {{tt|arg}} numero del punto è normale, vale a dire non è né zero, subnormale, infinito, né {{tt|NaN}}. |Determines if the given floating point number {{tt|arg}} is normal, i.e. is neither zero, subnormal, infinite, nor {{tt|NaN}}. }} | {{tr|Determina se il dato floating {{tt|arg}} numero del punto è normale, vale a dire non è né zero, subnormale, infinito, né {{tt|NaN}}. |Determines if the given floating point number {{tt|arg}} is normal, i.e. is neither zero, subnormal, infinite, nor {{tt|NaN}}. }} | ||
===Parametri=== | ===Parametri=== | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{| arg |{{tr| valore in virgola mobile| floating point value}}}} |
− | {{ | + | {{end}} |
===Valore di ritorno=== | ===Valore di ritorno=== | ||
Riga 26: | Riga 26: | ||
===Vedi anche=== | ===Vedi anche=== | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{| cpp/numeric/math/fpclassify}} |
− | {{ | + | {{| cpp/numeric/math/isfinite}} |
− | {{ | + | {{| cpp/numeric/math/isinf}} |
− | {{ | + | {{| cpp/numeric/math/isnan}} |
− | {{ | + | {{end}} |
[[de:cpp/numeric/math/isnormal]] | [[de:cpp/numeric/math/isnormal]] |
Versione attuale delle 14:38, 2 lug 2013
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <cmath>
|
||
bool isnormal( float arg ); |
(dal C++11) | |
bool isnormal( double arg ); |
(dal C++11) | |
bool isnormal( long double arg ); |
(dal C++11) | |
Determina se il dato floating
arg
numero del punto è normale, vale a dire non è né zero, subnormale, infinito, né NaN
. Original:
Determines if the given floating point number
arg
is normal, i.e. is neither zero, subnormal, infinite, nor NaN
. 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.
[modifica] Parametri
arg | - | valore in virgola mobile
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. |
[modifica] Valore di ritorno
true
arg
se è normale, altrimenti falseOriginal:
true if
arg
is normal, false otherwiseThe 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.
[modifica] Vedi anche
(C++11) |
categorizza il valore dato in virgola mobile Original: categorizes the given 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. (funzione) |
(C++11) |
controlla se il numero dato ha un valore finito Original: checks if the given number has finite value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) |
(C++11) |
controlla se il numero dato è infinito Original: checks if the given number is infinite The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) |
(C++11) |
controlla se il numero dato è NaN Original: checks if the given number is NaN The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) |