Namensräume
Varianten

std::complex

Aus cppreference.com
Version vom 22. Oktober 2012, 22:48 Uhr von TranslationBot (Diskussion | Beiträge) (Translated from the English version using Google Translate)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
 
 
Numerik-Bibliothek
Gemeinsame mathematischen Funktionen
Floating-Point-Umgebung
Komplexe Zahlen
Numerische Arrays
Pseudo-Zufallszahlen
Compile-time rationale Arithmetik (C++11)
Generische numerische Operationen
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iota(C++11)
accumulate
inner_product
adjacent_difference
partial_sum
 
Komplexe Zahlen
Member-Funktionen
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
complex::complex
complex::operator=
complex::real
complex::imag
complex::operator+=
complex::operator-=
complex::operator*=
complex::operator/=
Non-Member-Funktionen
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
operator==
operator!=
operator<<
operator>>
real
imag
abs
arg
norm
conj
proj(C++11)
polar
Exponentialfunktionen
Original:
Exponential functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
exp
log
log10
Power-Funktionen
Original:
Power functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
pow
sqrt
Trigonometrische Funktionen
Original:
Trigonometric functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
asin(C++11)
acos(C++11)
atan(C++11)
Hyperbolische Funktionen
Original:
Hyperbolic functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
asinh(C++11)
acosh(C++11)
atanh(C++11)
 
Defined in header <complex>
template< class T > class complex; //not defined
(1)
template<> class complex<float>;
(2)
template<> class complex<double>;
(3)
template<> class complex<long double>;
(4)
Die Spezialisierungen std::complex<float>, std::complex<double> und std::complex<long double> sind wörtliche Typen zur Darstellung und Manipulation komplexe Zahlen .
Original:
The specializations std::complex<float>, std::complex<double>, and std::complex<long double> are literal types for representing and manipulating komplexe Zahlen.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Die Wirkung von Instanziieren der Vorlage complex für jede andere Art ist unbegrenzt .
Original:
The effect of instantiating the template complex for any other type is unspecified.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Mitglied Typen

Mitglied Typ
Original:
Member type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
value_type T

Member-Funktionen

Vorlage:cpp/numeric/complex/dcl list operator=Vorlage:cpp/numeric/complex/dcl list realVorlage:cpp/numeric/complex/dcl list imagVorlage:cpp/numeric/complex/dcl list operator arith
konstruiert eine komplexe Zahl ist
Original:
constructs a complex number
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(öffentliche Elementfunktion)

Non-Member-Funktionen

Vorlage:cpp/numeric/complex/dcl list operator arith2Vorlage:cpp/numeric/complex/dcl list operator arith3Vorlage:cpp/numeric/complex/dcl list operator cmpVorlage:cpp/numeric/complex/dcl list operator ltltgtgtVorlage:cpp/numeric/complex/dcl list real2Vorlage:cpp/numeric/complex/dcl list imag2Vorlage:cpp/numeric/complex/dcl list absVorlage:cpp/numeric/complex/dcl list argVorlage:cpp/numeric/complex/dcl list normVorlage:cpp/numeric/complex/dcl list conjVorlage:cpp/numeric/complex/dcl list projVorlage:cpp/numeric/complex/dcl list polarVorlage:cpp/numeric/complex/dcl list expVorlage:cpp/numeric/complex/dcl list logVorlage:cpp/numeric/complex/dcl list log10Vorlage:cpp/numeric/complex/dcl list powVorlage:cpp/numeric/complex/dcl list sqrtVorlage:cpp/numeric/complex/dcl list sinVorlage:cpp/numeric/complex/dcl list cosVorlage:cpp/numeric/complex/dcl list tanVorlage:cpp/numeric/complex/dcl list asinVorlage:cpp/numeric/complex/dcl list acosVorlage:cpp/numeric/complex/dcl list atanVorlage:cpp/numeric/complex/dcl list sinhVorlage:cpp/numeric/complex/dcl list coshVorlage:cpp/numeric/complex/dcl list tanhVorlage:cpp/numeric/complex/dcl list asinhVorlage:cpp/numeric/complex/dcl list acoshVorlage:cpp/numeric/complex/dcl list atanh
Exponentialfunktionen
Original:
Exponential functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Power-Funktionen
Original:
Power functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Trigonometrische Funktionen
Original:
Trigonometric functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Hyperbolische Funktionen
Original:
Hyperbolic functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.