Dieser Code hilft Ihnen und ist ziemlich selbsterklärend:
#include <stdio.h> /* Standard Library of Input and Output */
#include <complex.h> /* Standard Library of Complex Numbers */
int main() {
double complex z1 = 1.0 + 3.0 * I;
double complex z2 = 1.0 - 4.0 * I;
printf("Working with complex numbers:\n\v");
printf("Starting values: Z1 = %.2f + %.2fi\tZ2 = %.2f %+.2fi\n", creal(z1), cimag(z1), creal(z2), cimag(z2));
double complex sum = z1 + z2;
printf("The sum: Z1 + Z2 = %.2f %+.2fi\n", creal(sum), cimag(sum));
double complex difference = z1 - z2;
printf("The difference: Z1 - Z2 = %.2f %+.2fi\n", creal(difference), cimag(difference));
double complex product = z1 * z2;
printf("The product: Z1 x Z2 = %.2f %+.2fi\n", creal(product), cimag(product));
double complex quotient = z1 / z2;
printf("The quotient: Z1 / Z2 = %.2f %+.2fi\n", creal(quotient), cimag(quotient));
double complex conjugate = conj(z1);
printf("The conjugate of Z1 = %.2f %+.2fi\n", creal(conjugate), cimag(conjugate));
return 0;
}
mit:
creal(z1)
: Holen Sie sich den Realteil (für Float crealf(z1)
, für Long Double creall(z1)
)
cimag(z1)
: Holen Sie sich den Imaginärteil (für Float cimagf(z1)
, für Long Double cimagl(z1)
)
Ein weiterer wichtiger Punkt zu erinnern , wenn mit komplexen Zahlen arbeiten , ist , dass Funktionen wie cos()
, exp()
und sqrt()
müssen mit ihren komplexen Formen ersetzt werden, zum Beispiel ccos()
, cexp()
, csqrt()
.