std::copysign
Da cppreference.com.
![]() | 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> | ||
float copysign(float x, float y ); | (1) | (dal C++11) |
double copysign(double x, double y ); | (2) | (dal C++11) |
longdouble copysign(longdouble x, longdouble y ); | (3) | (dal C++11) |
Promoted copysign( Arithmetic x, Arithmetic y ); | (4) | (dal C++11) |
Compone un valore in virgola mobile con la grandezza del
4) x
e il segno di y
. Original:
Composes a floating point value with the magnitude of
x
and the sign of y
. 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.
Se un qualsiasi argomento è di tipo integrale, il cast double. Se qualsiasi altro argomento è longdouble, quindi il tipo di ritorno è longdouble, altrimenti è double.
Original:
If any argument has integral type, it is cast to double. If any other argument is longdouble, then the return type is longdouble, otherwise it is double.
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
x, y | - | valori in virgola mobile Original: floating point values 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
valore del punto mobile con la grandezza del
x
e il segno della y
Original:
floating point value with the magnitude of
x
and the sign of y
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]Vedi anche
valore assoluto di un valore in virgola mobile (|x|) Original: absolute value of a floating point value (|x|) 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 è negativo Original: checks if the given number is negative The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) |