CMPLXF, CMPLX, CMPLXL
De 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. |
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <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 ); |
||
Retorna um número complexo composto por
real como a parte real e imag como a parte imaginária. As funções são implementadas como macros. 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.
O valor retornado em adequado para utilização como inicializador para variáveis com duração de armazenagem estática ou segmento, mas somente se
real e imag também são adequados.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.
Parâmetros
| real | - | a parte real do número complexo de voltar
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 | - | a parte imaginária de um número complexo de voltar
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. |
Valor de retorno
Um número complexo composto por
real e imag como as partes real e imaginária.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.
Exemplo
| Esta seção está incompleta Motivo: sem exemplo |