blob: a985acbf001bccbf2c5b6a2a042bbcc19780e3d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
** -*- C -*-
**
** doubleComplex.c
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Thu Nov 30 16:27:08 2006 jofret
** Last update Thu Dec 7 11:44:05 2006 jofret
**
** Copyright INRIA 2006
*/
#include "doubleComplex.h"
/*
** \function real
** \brief Return a Complex Real Part .
*/
double real(doubleComplex z) {
return z.real;
}
/*
** \function imag
** \brief Return a Complex Imaginary Part .
*/
double imag(doubleComplex z) {
return z.imag;
}
/*
** \function DoubleComplex
** \brief construct a Double Complex .
*/
doubleComplex DoubleComplex(double real, double imag) {
doubleComplex z;
z.real = real;
z.imag = imag;
return z;
}
/*
** \function isreal
** \brief check if complex is real .
*/
bool isreal(doubleComplex z) {
if (z.imag == 0)
return true;
return false;
}
/*
** \function isimag
** \brief check if complex is pure imaginary .
*/
bool isimag(doubleComplex z) {
if (z.real == 0)
return true;
return false;
}
|