Namensräume
Varianten
Aktionen

Complex number arithmetic

Aus cppreference.com
< c‎ | numeric

 
 
 
Arithmetik mit komplexen Zahlen
Arten und der imaginäre konstant
Original:
Types and the imaginary constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Manipulation
Original:
Manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Power und Exponentialfunktionen
Original:
Power and exponential 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.
 
Der Header <complex.h> definiert Makros und erklärt Funktionen, die Arithmetik mit komplexen Zahlen zu unterstützen. Komplexe sind Werte vom Typ double complex, float complex, long double complex
Original:
The header <complex.h> defines macros and declares functions that support complex number arithmetic. Complex values are values of type double complex, float complex, long double complex,
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Wenn das Makro konstanten __STDC_IEC_559_COMPLEX__(C99) vom Compiler definiert ist, zusätzlich zu den komplexen Typen sind die imaginären Typen ebenfalls unterstützt: double imaginary, float imaginary und long double imaginary. Wenn ein Wert der imaginären Aktivität auf einen Wert von komplexen Typ umgewandelt wird, hat die resultierende komplexe Typ seiner realen Komponente auf Null gesetzt. Wenn ein Wert des komplexen Typs auf einen Wert von imaginären Art konvertiert wird, wird die reale Komponente verworfen .
Original:
If the macro constant __STDC_IEC_559_COMPLEX__(C99) is defined by the compiler, in addition to the complex types, the imaginary types are also supported: double imaginary, float imaginary, and long double imaginary. When a value of imaginary type is converted to a value of complex type, the resulting complex type has its real component set to zero. When a value of complex type is converted to a value of imaginary type, the real component is discarded.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Standard arithmetischen Operatoren +, -, *, / mit echten, komplexen und imaginären Typen in beliebiger Kombination verwendet werden .
Original:
Standard arithmetic operators +, -, *, / can be used with real, complex, and imaginary types in any combination.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Wenn das Makro konstanten __STDC_NO_COMPLEX__(C11) durch den Compiler definiert ist, werden die Header <complex.h> und alle hier aufgeführten Namen nicht vorgesehen .
Original:
If the macro constant __STDC_NO_COMPLEX__(C11) is defined by the compiler, the header <complex.h> and all of the names listed here are not provided.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Wenn #pragma STDC CX_LIMITED_RANGE on verwendet wird, kann komplexe Multiplikation, Division und absolute Wert verwenden vereinfachte mathematische Formeln, trotz der Möglichkeit von Zwischen-Überlauf .
Original:
If #pragma STDC CX_LIMITED_RANGE on is used, complex multiplication, division, and absolute value may use simplified mathematical formulas, despite the possibility of intermediate overflow.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
definiert in Header <complex.h>

Inhaltsverzeichnis

Types
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
komplexen Typs Makro
Original:
complex type macro
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Makro konstant) [edit]
Die komplexe Einheit Konstante i
Original:
the complex unit constant i
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Makro konstant) [edit]
Die imaginäre konstant
Original:
The imaginary constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
imaginären type Makro
Original:
imaginary type macro
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Makro konstant) [edit]
die imaginäre Einheit i konstant
Original:
the imaginary unit constant i
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Makro konstant) [edit]
(C99)
der Komplex oder imaginäre Einheit i konstant
Original:
the complex or imaginary unit constant i
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Makro konstant) [edit]
Manipulation
Original:
Manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C11)
(C11)
(C11)
constructs a complex number from real and imaginary parts
(funktionieren Makro) [edit]
(C99)
(C99)
(C99)
Berechnet den imaginären Teil einer komplexen Zahl
Original:
computes the imaginary part 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.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet den Realteil einer komplexen Zahl
Original:
computes the real part of 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.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet den Phasenwinkel eines komplexen Zahl
Original:
computes the phase angle of 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.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet den Komplexkonjugierten
Original:
computes the complex conjugate
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet die Projektion auf Riemann Kugel
Original:
computes the projection on Riemann sphere
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet den Betrag einer komplexen Zahl
Original:
computes the magnitude of 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.

(Funktion) [edit]
Exponential functinos
Original:
Exponential functinos
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C99)
(C99)
(C99)
berechnet die komplexe Basis-e exponentiell
Original:
computes the complex base-e exponential
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet die komplexen natürlichen Logarithmus
Original:
computes the complex natural logarithm
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
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.
(C99)
(C99)
(C99)
berechnet die komplexe Power-Funktion
Original:
computes the complex power function
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet die komplexe Quadratwurzel
Original:
computes the complex square root
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
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.
(C99)
(C99)
(C99)
berechnet die komplexe Arkuskosinus
Original:
computes the complex arc cosine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet die komplexe Arcussinus
Original:
computes the complex arc sine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet die komplexe Arcustangens
Original:
computes the complex arc tangent
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet die komplexen Cosinus
Original:
computes the complex cosine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet den komplexen Sinusfunktion
Original:
computes the complex sine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet die komplexe Tangente
Original:
computes the complex tangent
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
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.
(C99)
(C99)
(C99)
berechnet die komplexe arc Hyperbelkosinus
Original:
computes the complex arc hyperbolic cosine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet die komplexen arc Hyperbelsinus
Original:
computes the complex arc hyperbolic sine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
computes the complex arc hyperbolic tangent
(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet die komplexe Hyperbelkosinus
Original:
computes the complex hyperbolic cosine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
berechnet die komplexen Hyperbelsinus
Original:
computes the complex hyperbolic sine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
(C99)
(C99)
(C99)
computes the complex hyperbolic tangent
(Funktion) [edit]