Blame view

rts/rtsComplex.h 9.29 KB
f1402849   dmayerich   renewed commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  /*RTS Complex number class.  This class is CUDA compatible,
  and can therefore be used in CUDA code and on CUDA devices.
  */
  
  #ifndef RTS_COMPLEX
  #define RTS_COMPLEX
  
  #include "cuda_callable.h"
  #include <cmath>
  #include <string>
  #include <sstream>
  #include <iostream>
  
  namespace rts
  {
  
  template <class T>
a47a23a9   dmayerich   added ENVI functions
18
  struct rtsComplex
f1402849   dmayerich   renewed commit
19
20
21
22
  {
      T r, i;
  
      //default constructor
a47a23a9   dmayerich   added ENVI functions
23
      CUDA_CALLABLE rtsComplex()
f1402849   dmayerich   renewed commit
24
25
26
27
28
29
      {
          r = 0.0;
  		i = 0.0;
      }
  
  	//access methods
a47a23a9   dmayerich   added ENVI functions
30
  	CUDA_CALLABLE T real()
f1402849   dmayerich   renewed commit
31
32
33
34
  	{
  		return r;
  	}
  
a47a23a9   dmayerich   added ENVI functions
35
  	CUDA_CALLABLE T real(T r_val)
f1402849   dmayerich   renewed commit
36
37
38
39
40
  	{
  		r = r_val;
  		return r_val;
  	}
  
a47a23a9   dmayerich   added ENVI functions
41
  	CUDA_CALLABLE T imag()
f1402849   dmayerich   renewed commit
42
43
44
  	{
  		return i;
  	}
a47a23a9   dmayerich   added ENVI functions
45
  	CUDA_CALLABLE T imag(T i_val)
f1402849   dmayerich   renewed commit
46
47
48
49
50
  	{
  		i = i_val;
  		return i_val;
  	}
  
f1402849   dmayerich   renewed commit
51
      //constructor when given real and imaginary values
a47a23a9   dmayerich   added ENVI functions
52
      CUDA_CALLABLE rtsComplex(T r, T i)
f1402849   dmayerich   renewed commit
53
54
55
56
57
58
      {
          this->r = r;
          this->i = i;
      }
  
      //return the current value multiplied by i
a47a23a9   dmayerich   added ENVI functions
59
      CUDA_CALLABLE rtsComplex<T> imul()
f1402849   dmayerich   renewed commit
60
      {
a47a23a9   dmayerich   added ENVI functions
61
          rtsComplex<T> result;
f1402849   dmayerich   renewed commit
62
63
64
65
66
67
68
69
70
          result.r = -i;
          result.i = r;
  
          return result;
      }
  
  	//ARITHMETIC OPERATORS--------------------
  
      //binary + operator (returns the result of adding two complex values)
a47a23a9   dmayerich   added ENVI functions
71
      CUDA_CALLABLE rtsComplex<T> operator+ (const rtsComplex<T> rhs)
f1402849   dmayerich   renewed commit
72
      {
a47a23a9   dmayerich   added ENVI functions
73
          rtsComplex<T> result;
f1402849   dmayerich   renewed commit
74
75
76
77
78
          result.r = r + rhs.r;
          result.i = i + rhs.i;
          return result;
      }
  
a47a23a9   dmayerich   added ENVI functions
79
  	CUDA_CALLABLE rtsComplex<T> operator+ (const T rhs)
f1402849   dmayerich   renewed commit
80
      {
a47a23a9   dmayerich   added ENVI functions
81
          rtsComplex<T> result;
f1402849   dmayerich   renewed commit
82
83
84
85
86
87
          result.r = r + rhs;
          result.i = i;
          return result;
      }
  
      //binary - operator (returns the result of adding two complex values)
a47a23a9   dmayerich   added ENVI functions
88
      CUDA_CALLABLE rtsComplex<T> operator- (const rtsComplex<T> rhs)
f1402849   dmayerich   renewed commit
89
      {
a47a23a9   dmayerich   added ENVI functions
90
          rtsComplex<T> result;
f1402849   dmayerich   renewed commit
91
92
93
94
95
96
          result.r = r - rhs.r;
          result.i = i - rhs.i;
          return result;
      }
  
      //binary - operator (returns the result of adding two complex values)
a47a23a9   dmayerich   added ENVI functions
97
      CUDA_CALLABLE rtsComplex<T> operator- (const T rhs)
f1402849   dmayerich   renewed commit
98
      {
a47a23a9   dmayerich   added ENVI functions
99
          rtsComplex<T> result;
f1402849   dmayerich   renewed commit
100
101
102
103
104
105
          result.r = r - rhs;
          result.i = i;
          return result;
      }
  
      //binary MULTIPLICATION operators (returns the result of multiplying complex values)
a47a23a9   dmayerich   added ENVI functions
106
      CUDA_CALLABLE rtsComplex<T> operator* (const rtsComplex<T> rhs)
f1402849   dmayerich   renewed commit
107
      {
a47a23a9   dmayerich   added ENVI functions
108
          rtsComplex<T> result;
f1402849   dmayerich   renewed commit
109
110
111
112
          result.r = r * rhs.r - i * rhs.i;
          result.i = r * rhs.i + i * rhs.r;
          return result;
      }
a47a23a9   dmayerich   added ENVI functions
113
      CUDA_CALLABLE rtsComplex<T> operator* (const T rhs)
f1402849   dmayerich   renewed commit
114
      {
a47a23a9   dmayerich   added ENVI functions
115
          return rtsComplex<T>(r * rhs, i * rhs);
f1402849   dmayerich   renewed commit
116
117
118
      }
  
      //binary DIVISION operators (returns the result of dividing complex values)
a47a23a9   dmayerich   added ENVI functions
119
      CUDA_CALLABLE rtsComplex<T> operator/ (const rtsComplex<T> rhs)
f1402849   dmayerich   renewed commit
120
      {
a47a23a9   dmayerich   added ENVI functions
121
          rtsComplex<T> result;
f1402849   dmayerich   renewed commit
122
123
124
125
126
127
          T denom = rhs.r * rhs.r + rhs.i * rhs.i;
          result.r = (r * rhs.r + i * rhs.i) / denom;
          result.i = (- r * rhs.i + i * rhs.r) / denom;
  
          return result;
      }
a47a23a9   dmayerich   added ENVI functions
128
      CUDA_CALLABLE rtsComplex<T> operator/ (const T rhs)
f1402849   dmayerich   renewed commit
129
      {
a47a23a9   dmayerich   added ENVI functions
130
          return rtsComplex<T>(r / rhs, i / rhs);
f1402849   dmayerich   renewed commit
131
132
133
      }
  
      //ASSIGNMENT operators-----------------------------------
a47a23a9   dmayerich   added ENVI functions
134
      CUDA_CALLABLE rtsComplex<T> & operator=(const rtsComplex<T> &rhs)
f1402849   dmayerich   renewed commit
135
136
137
138
139
140
141
142
143
      {
          //check for self-assignment
          if(this != &rhs)
          {
              this->r = rhs.r;
              this->i = rhs.i;
          }
          return *this;
      }
a47a23a9   dmayerich   added ENVI functions
144
      CUDA_CALLABLE rtsComplex<T> & operator=(const T &rhs)
f1402849   dmayerich   renewed commit
145
146
147
148
149
150
151
152
      {
          this->r = rhs;
          this->i = 0;
  
  		return *this;
      }
  
      //arithmetic assignment operators
a47a23a9   dmayerich   added ENVI functions
153
      CUDA_CALLABLE rtsComplex<T> operator+=(const rtsComplex<T> &rhs)
f1402849   dmayerich   renewed commit
154
155
156
157
      {
  		*this = *this + rhs;
          return *this;
      }
a47a23a9   dmayerich   added ENVI functions
158
      CUDA_CALLABLE rtsComplex<T> operator+=(const T &rhs)
f1402849   dmayerich   renewed commit
159
160
161
162
163
      {
  		*this = *this + rhs;
          return *this;
      }
  
a47a23a9   dmayerich   added ENVI functions
164
      CUDA_CALLABLE rtsComplex<T> operator*=(const rtsComplex<T> &rhs)
f1402849   dmayerich   renewed commit
165
166
167
168
      {
  		*this = *this * rhs;
          return *this;
      }
a47a23a9   dmayerich   added ENVI functions
169
  	CUDA_CALLABLE rtsComplex<T> operator*=(const T &rhs)
f1402849   dmayerich   renewed commit
170
171
172
173
174
      {
  		*this = *this * rhs;
          return *this;
      }
  	//divide and assign
a47a23a9   dmayerich   added ENVI functions
175
  	CUDA_CALLABLE rtsComplex<T> operator/=(const rtsComplex<T> &rhs)
f1402849   dmayerich   renewed commit
176
177
178
179
      {
  		*this = *this / rhs;
          return *this;
      }
a47a23a9   dmayerich   added ENVI functions
180
      CUDA_CALLABLE rtsComplex<T> operator/=(const T &rhs)
f1402849   dmayerich   renewed commit
181
182
183
184
185
186
187
188
189
190
191
      {
  		*this = *this / rhs;
          return *this;
      }
  
      //absolute value operator (returns the absolute value of the complex number)
  	CUDA_CALLABLE T abs()
  	{
  		return std::sqrt(r * r + i * i);
  	}
  
a47a23a9   dmayerich   added ENVI functions
192
  	CUDA_CALLABLE rtsComplex<T> log()
f1402849   dmayerich   renewed commit
193
  	{
a47a23a9   dmayerich   added ENVI functions
194
          rtsComplex<T> result;
f1402849   dmayerich   renewed commit
195
196
197
198
199
200
201
          result.r = std::log(std::sqrt(r * r + i * i));
          result.i = std::atan2(i, r);
  
  
          return result;
  	}
  
a47a23a9   dmayerich   added ENVI functions
202
  	CUDA_CALLABLE rtsComplex<T> exp()
f1402849   dmayerich   renewed commit
203
  	{
a47a23a9   dmayerich   added ENVI functions
204
          rtsComplex<T> result;
f1402849   dmayerich   renewed commit
205
206
207
208
209
210
211
212
213
214
215
216
217
218
  
          T e_r = std::exp(r);
          result.r = e_r * std::cos(i);
          result.i = e_r * std::sin(i);
  
          return result;
  	}
  
  	/*CUDA_CALLABLE complex<T> pow(int y)
  	{
  
          return pow((double)y);
  	}*/
  
a47a23a9   dmayerich   added ENVI functions
219
  	CUDA_CALLABLE rtsComplex<T> pow(T y)
f1402849   dmayerich   renewed commit
220
  	{
a47a23a9   dmayerich   added ENVI functions
221
          rtsComplex<T> result;
f1402849   dmayerich   renewed commit
222
223
224
225
226
227
  
          result = log() * y;
  
          return result.exp();
  	}
  
a47a23a9   dmayerich   added ENVI functions
228
  	CUDA_CALLABLE rtsComplex<T> sqrt()
f1402849   dmayerich   renewed commit
229
  	{
a47a23a9   dmayerich   added ENVI functions
230
  		rtsComplex<T> result;
f1402849   dmayerich   renewed commit
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
  
  		//convert to polar coordinates
  		T a = std::sqrt(r*r + i*i);
  		T theta = std::atan2(i, r);
  
  		//find the square root
  		T a_p = std::sqrt(a);
  		T theta_p = theta/2.0;
  
  		//convert back to cartesian coordinates
  		result.r = a_p * std::cos(theta_p);
  		result.i = a_p * std::sin(theta_p);
  
  		return result;
  	}
  
  	std::string toStr()
  	{
  		std::stringstream ss;
  		ss<<"("<<r<<","<<i<<")";
  
  		return ss.str();
  	}
  
  	//COMPARISON operators
a47a23a9   dmayerich   added ENVI functions
256
  	CUDA_CALLABLE bool operator==(rtsComplex<T> rhs)
f1402849   dmayerich   renewed commit
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
  	{
          if(r == rhs.r && i == rhs.i)
              return true;
          return false;
      }
  
      CUDA_CALLABLE bool operator==(T rhs)
  	{
          if(r == rhs && i == (T)0.0)
              return true;
          return false;
      }
  
  	/*//FRIEND functions
      //unary minus operator (for negating the complex number)
  	template<class A> CUDA_CALLABLE friend complex<A> operator-(const complex<A> &rhs);
  
  	//multiplication by T values when the complex number isn't on the left hand side
  	template<class A> CUDA_CALLABLE friend complex<A> operator*(const A a, const complex<A> b);
  
  	//division by T values when the complex number isn't on the left hand side
  	template<class A> CUDA_CALLABLE friend complex<A> operator/(const A a, const complex<A> b);
  
  	//POW function
  	//template<class A> CUDA_CALLABLE friend complex<A> pow(const complex<A> x, T y);
  	template<class A> CUDA_CALLABLE friend complex<A> pow(const complex<A> x, int y);
  
  	//log function
  	template<class A> CUDA_CALLABLE friend complex<A> log(complex<A> x);
  
  	//exp function
  	template<class A> CUDA_CALLABLE friend complex<A> exp(complex<A> x);
  
  	//sqrt function
  	template<class A> CUDA_CALLABLE friend complex<A> sqrt(complex<A> x);
  
  	//trigonometric functions
  	template<class A> CUDA_CALLABLE friend complex<A> sin(complex<A> x);
  
  	template<class A> CUDA_CALLABLE friend complex<A> cos(complex<A> x);*/
  
  };
  
a47a23a9   dmayerich   added ENVI functions
300
301
  }	//end RTS namespace
  
f1402849   dmayerich   renewed commit
302
303
  //addition
  template<typename T>
a47a23a9   dmayerich   added ENVI functions
304
  CUDA_CALLABLE static rts::rtsComplex<T> operator+(const double a, const rts::rtsComplex<T> b)
f1402849   dmayerich   renewed commit
305
  {
a47a23a9   dmayerich   added ENVI functions
306
      return rts::rtsComplex<T>(a + b.r, b.i);
f1402849   dmayerich   renewed commit
307
308
309
310
  }
  
  //subtraction with a real value
  template<typename T>
a47a23a9   dmayerich   added ENVI functions
311
  CUDA_CALLABLE static rts::rtsComplex<T> operator-(const double a, const rts::rtsComplex<T> b)
f1402849   dmayerich   renewed commit
312
  {
a47a23a9   dmayerich   added ENVI functions
313
      return rts::rtsComplex<T>(a - b.r, -b.i);
f1402849   dmayerich   renewed commit
314
315
316
317
  }
  
  //minus sign
  template<typename T>
a47a23a9   dmayerich   added ENVI functions
318
  CUDA_CALLABLE static rts::rtsComplex<T> operator-(const rts::rtsComplex<T> &rhs)
f1402849   dmayerich   renewed commit
319
  {
a47a23a9   dmayerich   added ENVI functions
320
      return rts::rtsComplex<T>(-rhs.r, -rhs.i);
f1402849   dmayerich   renewed commit
321
322
323
324
  }
  
  //multiply a T value by a complex value
  template<typename T>
a47a23a9   dmayerich   added ENVI functions
325
  CUDA_CALLABLE static rts::rtsComplex<T> operator*(const double a, const rts::rtsComplex<T> b)
f1402849   dmayerich   renewed commit
326
  {
a47a23a9   dmayerich   added ENVI functions
327
      return rts::rtsComplex<T>(a * b.r, a * b.i);
f1402849   dmayerich   renewed commit
328
329
330
331
  }
  
  //divide a T value by a complex value
  template<typename T>
a47a23a9   dmayerich   added ENVI functions
332
  CUDA_CALLABLE static rts::rtsComplex<T> operator/(const double a, const rts::rtsComplex<T> b)
f1402849   dmayerich   renewed commit
333
334
  {
      //return complex<T>(a * b.r, a * b.i);
a47a23a9   dmayerich   added ENVI functions
335
      rts::rtsComplex<T> result;
f1402849   dmayerich   renewed commit
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
  
      T denom = b.r * b.r + b.i * b.i;
  
      result.r = (a * b.r) / denom;
      result.i = -(a * b.i) / denom;
  
      return result;
  }
  
  //POW function
  /*template<typename T>
  CUDA_CALLABLE static complex<T> pow(complex<T> x, int y)
  {
  	return x.pow(y);
  }*/
  
  template<typename T>
a47a23a9   dmayerich   added ENVI functions
353
  CUDA_CALLABLE static rts::rtsComplex<T> pow(rts::rtsComplex<T> x, T y)
f1402849   dmayerich   renewed commit
354
355
356
357
358
359
  {
  	return x.pow(y);
  }
  
  //log function
  template<typename T>
a47a23a9   dmayerich   added ENVI functions
360
  CUDA_CALLABLE static rts::rtsComplex<T> log(rts::rtsComplex<T> x)
f1402849   dmayerich   renewed commit
361
362
363
364
365
366
  {
  	return x.log();
  }
  
  //exp function
  template<typename T>
a47a23a9   dmayerich   added ENVI functions
367
  CUDA_CALLABLE static rts::rtsComplex<T> exp(rts::rtsComplex<T> x)
f1402849   dmayerich   renewed commit
368
369
370
371
372
373
  {
  	return x.exp();
  }
  
  //sqrt function
  template<typename T>
a47a23a9   dmayerich   added ENVI functions
374
  CUDA_CALLABLE static rts::rtsComplex<T> sqrt(rts::rtsComplex<T> x)
f1402849   dmayerich   renewed commit
375
376
377
378
379
380
  {
  	return x.sqrt();
  }
  
  
  template <typename T>
a47a23a9   dmayerich   added ENVI functions
381
  CUDA_CALLABLE static T abs(rts::rtsComplex<T> a)
f1402849   dmayerich   renewed commit
382
383
384
385
386
  {
      return a.abs();
  }
  
  template <typename T>
a47a23a9   dmayerich   added ENVI functions
387
  CUDA_CALLABLE static T real(rts::rtsComplex<T> a)
f1402849   dmayerich   renewed commit
388
389
390
391
  {
      return a.r;
  }
  
a47a23a9   dmayerich   added ENVI functions
392
393
394
395
396
397
  //template <typename T>
  CUDA_CALLABLE static float real(float a)
  {
      return a;
  }
  
f1402849   dmayerich   renewed commit
398
  template <typename T>
a47a23a9   dmayerich   added ENVI functions
399
  CUDA_CALLABLE static T imag(rts::rtsComplex<T> a)
f1402849   dmayerich   renewed commit
400
401
402
403
404
405
  {
      return a.i;
  }
  
  //trigonometric functions
  template<class A>
a47a23a9   dmayerich   added ENVI functions
406
  CUDA_CALLABLE rts::rtsComplex<A> sin(const rts::rtsComplex<A> x)
f1402849   dmayerich   renewed commit
407
  {
a47a23a9   dmayerich   added ENVI functions
408
  	rts::rtsComplex<A> result;
f1402849   dmayerich   renewed commit
409
410
411
412
413
414
415
  	result.r = std::sin(x.r) * std::cosh(x.i);
  	result.i = std::cos(x.r) * std::sinh(x.i);
  
  	return result;
  }
  
  template<class A>
a47a23a9   dmayerich   added ENVI functions
416
  CUDA_CALLABLE rts::rtsComplex<A> cos(const rts::rtsComplex<A> x)
f1402849   dmayerich   renewed commit
417
  {
a47a23a9   dmayerich   added ENVI functions
418
  	rts::rtsComplex<A> result;
f1402849   dmayerich   renewed commit
419
420
421
422
423
424
425
  	result.r = std::cos(x.r) * std::cosh(x.i);
  	result.i = -(std::sin(x.r) * std::sinh(x.i));
  
  	return result;
  }
  
  
f1402849   dmayerich   renewed commit
426
  template<class A>
a47a23a9   dmayerich   added ENVI functions
427
  std::ostream& operator<<(std::ostream& os, rts::rtsComplex<A> x)
f1402849   dmayerich   renewed commit
428
429
430
431
432
433
434
435
  {
      os<<x.toStr();
      return os;
  }
  
  
  
  #endif