CMPLXF, CMPLX, CMPLXL
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. |
<metanoindex/>
<tbody> </tbody>| Elemento definito nell'header <complex.h>
|
||
float complex cpowf( float real, float imag ); |
||
doulbe complex cpow( double real, double imag ); |
||
long double complex cpowl( long double real, long double imag ); |
||
Restituisce un numero complesso composto
real come la parte reale e imag come la parte immaginaria. Le funzioni sono implementate come macro. Original:
Returns a complex number composed of
real as the real part and imag as the imaginary part. The functions are implemented as macros. 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.
Il valore restituito in adatto come inizializzatore per le variabili con durata di stoccaggio statico o filo, ma solo se
real imag e sono adatti anche.Original:
The returned value in suitable for use as initializer for variables with static or thread storage duration, but only if
real and imag are also suitable.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.
Parametri
| real | - | la parte reale del numero complesso di ritornare
Original: the real part of the complex number to return The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| imag | - | la parte immaginaria del numero complesso di ritornare
Original: the imaginary part of the complex number to return The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valore di ritorno
Un numero complesso composto da
real e imag come le parti reale e immaginaria.Original:
A complex number composed of
real and imag as the real and imaginary parts.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.
Esempio
| This section is incomplete Reason: no example |