std::complex::complex
De cppreference.com
<metanoindex/>
<tbody> </tbody> complex( const T& re = T(), const T& im = T() ); |
(1) | |
complex( const complex& rhs ); |
(2) | |
Constrói o objeto std::complex.
Original:
Constructs the std::complex object.
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.
1)
Constrói o número complexo de partes real e imaginária.
Original:
Constructs the complex number from 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.
2)
Copie construtor. Constrói o objeto com a cópia do conteúdo do
other.Original:
Copy constructor. Constructs the object with the copy of the contents of
other.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
| re | - | a parte real
Original: the real part The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| im | - | a parte imaginária
Original: the imaginary part The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| other | - | outro complexo para utilizar como fonte
Original: another complex to use as source The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
