STATUS: stable complex More...
#include "definitions.h"
Go to the source code of this file.
Data Structures | |
struct | Complex |
Functions | |
Complex | complex (double re, double im) |
constructor. | |
double | complex_abs (Complex a) |
absolute value of complex number. | |
Complex | complex_add (Complex a, Complex b) |
complex addition. | |
Complex | complex_add_dbl (Complex a, double b) |
Complex | complex_bilinear_transform (Complex pz) |
bilinear transform of a complex number. | |
Complex | complex_conj (Complex a) |
complex conjugate. | |
Complex | complex_div (Complex a, Complex b) |
complex division. | |
Complex | complex_exp (Complex a) |
exponential function of a complex number. | |
Complex | complex_mul (Complex a, Complex b) |
complex multiplication. | |
Complex | complex_mul_double (Complex a, double b) |
complex multiplication with real number. | |
Complex | complex_neg (Complex a) |
complex negate. | |
Complex | complex_sqrt (Complex x) |
complex square root. | |
Complex | complex_sub (Complex a, Complex b) |
complex subtraction. |
STATUS: stable complex
Complex Numbers.
Definition in file complex.h.
Complex complex | ( | double | re, | |
double | im | |||
) |
double complex_abs | ( | Complex | a | ) |