cvrComplex.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052 #ifndef _CVR_COMPLEX_H
00053 #define _CVR_COMPLEX_H
00054
00055 #include "cvrMath.h"
00056 #include "cvrIoHandler.h"
00057 #include <complex>
00058 #include <iostream>
00059
00060 namespace cvr {
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075 template<typename T>
00076 class complex {
00077 public:
00078 typedef T value_type;
00079
00080
00081
00082
00083 T real() const;
00084
00085
00086
00087
00088 T imag() const;
00089
00090
00091
00092
00093 inline complex(const T& = T(), const T& = T());
00094
00095
00096
00097
00098 template<class U>
00099 inline complex(const complex<U>& other);
00100
00101
00102
00103
00104 inline complex(const std::complex<T>& other);
00105
00106
00107
00108
00109 inline operator std::complex<T>() const;
00110
00111
00112
00113
00114
00115 inline complex<T>& operator=(const T& other);
00116
00117
00118
00119
00120 inline complex<T>& operator+=(const T& other);
00121
00122
00123
00124
00125 inline complex<T>& operator-=(const T& other);
00126
00127
00128
00129
00130 inline complex<T>& operator*=(const T& other);
00131
00132
00133
00134
00135 inline complex<T>& operator/=(const T& other);
00136
00137
00138
00139
00140 template<typename U>
00141 inline complex<T>& operator=(const complex<U>& other);
00142
00143
00144
00145
00146 template<typename U>
00147 inline complex<T>& operator+=(const complex<U>& other);
00148
00149
00150
00151
00152 template<typename U>
00153 inline complex<T>& operator-=(const complex<U>& other);
00154
00155
00156
00157
00158 template<typename U>
00159 inline complex<T>& operator*=(const complex<U>& other);
00160
00161
00162
00163
00164 template<typename U>
00165 inline complex<T>& operator/=(const complex<U>& other);
00166
00167
00168
00169
00170 inline void set(const T& re, const T& im = T());
00171
00172
00173
00174
00175 inline void setReal(const T& re);
00176
00177
00178
00179
00180 inline void setImag(const T& im);
00181
00182
00183
00184
00185 inline void get(T& re, T& im) const;
00186
00187 private:
00188
00189
00190
00191 T realPart_;
00192
00193
00194
00195
00196 T imagPart_;
00197 };
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210 template<typename T>
00211 inline complex<T> operator+(const complex<T>& a, const complex<T>& b);
00212
00213
00214
00215
00216 template<typename T>
00217 inline complex<T> operator+(const complex<T>& a, const T& b);
00218
00219
00220
00221
00222 template<typename T>
00223 inline complex<T> operator+(const T& a, const complex<T>& b);
00224
00225
00226
00227
00228 template<typename T>
00229 inline complex<T> operator-(const complex<T>& a, const complex<T>& b);
00230
00231
00232
00233
00234 template<typename T>
00235 inline complex<T> operator-(const complex<T>& a, const T& b);
00236
00237
00238
00239
00240 template<typename T>
00241 inline complex<T> operator-(const T& a, const complex<T>& b);
00242
00243
00244
00245
00246 template<typename T>
00247 inline complex<T> operator*(const complex<T>& a, const complex<T>& b);
00248
00249
00250
00251
00252 template<typename T>
00253 inline complex<T> operator*(const complex<T>& a, const T& b);
00254
00255
00256
00257
00258 template<typename T>
00259 inline complex<T> operator*(const T& a, const complex<T>& b);
00260
00261
00262
00263
00264 template<typename T>
00265 inline complex<T> operator/(const complex<T>& a, const complex<T>& b);
00266
00267
00268
00269
00270 template<typename T>
00271 inline complex<T> operator/(const complex<T>& a, const T& b);
00272
00273
00274
00275
00276 template<typename T>
00277 inline complex<T> operator/(const T& a, const complex<T>& b);
00278
00279
00280
00281
00282 template<typename T>
00283 inline complex<T> operator+(const complex<T>& a);
00284
00285
00286
00287
00288 template<typename T>
00289 inline complex<T> operator-(const complex<T>& a);
00290
00291
00292
00293
00294 template<typename T>
00295 inline bool operator==(const complex<T>& a, const complex<T>& b);
00296
00297
00298
00299
00300 template<typename T>
00301 inline bool operator==(const complex<T>& a, const T& b);
00302
00303
00304
00305
00306 template<typename T>
00307 inline bool operator==(const T& a, const complex<T>& b);
00308
00309
00310
00311
00312 template<typename T>
00313 inline bool operator!=(const complex<T>& a, const complex<T>& b);
00314
00315
00316
00317
00318 template<typename T>
00319 inline bool operator!=(const complex<T>& a, const T& b);
00320
00321
00322
00323
00324 template<typename T>
00325 inline bool operator!=(const T& a, const complex<T>& b);
00326
00327
00328
00329
00330
00331
00332 template<typename T>
00333 inline bool operator<(const complex<T>& a,const complex<T>& b);
00334
00335
00336
00337
00338
00339
00340 template<typename T>
00341 inline bool operator<(const complex<T>& a,const T& b);
00342
00343
00344
00345
00346
00347
00348 template<typename T>
00349 inline bool operator<(const T& a,const complex<T>& b);
00350
00351
00352
00353
00354
00355
00356 template<typename T>
00357 inline bool operator>(const complex<T>& a,const complex<T>& b);
00358
00359
00360
00361
00362
00363
00364 template<typename T>
00365 inline bool operator>(const complex<T>& a,const T& b);
00366
00367
00368
00369
00370
00371
00372 template<typename T>
00373 inline bool operator>(const T& a,const complex<T>& b);
00374
00375
00376
00377
00378 template<typename T>
00379 inline T real(const complex<T>& cn);
00380
00381
00382
00383
00384 template<typename T>
00385 inline T imag(const complex<T>& cn);
00386
00387
00388
00389
00390
00391
00392
00393
00394
00395 template<typename T>
00396 inline T sqrAbs(const complex<T>& x);
00397
00398
00399
00400
00401 template<typename T>
00402 T abs(const complex<T>& cn);
00403
00404
00405
00406
00407 template<typename T>
00408 inline T arg(const complex<T>& cn);
00409
00410
00411
00412
00413 template<typename T>
00414 inline T norm(const complex<T>& cn);
00415
00416
00417
00418
00419
00420
00421
00422
00423
00424 template<typename T>
00425 inline complex<T> polar(const T& radius, const T& angle);
00426
00427
00428
00429
00430 template<typename T>
00431 inline complex<T> conj(const complex<T>& cn);
00432
00433
00434
00435
00436 template<typename T>
00437 inline complex<T> cos(const complex<T>& cn);
00438
00439
00440
00441
00442 template<typename T>
00443 inline complex<T> cosh(const complex<T>& cn);
00444
00445 template<typename T>
00446 inline complex<T> acos(const complex<T>& cn);
00447
00448
00449
00450
00451 template<typename T>
00452 inline complex<T> exp(const complex<T>& cn);
00453
00454
00455
00456
00457 template<typename T>
00458 inline complex<T> log(const complex<T>& cn);
00459
00460
00461
00462
00463 template<typename T>
00464 inline complex<T> log10(const complex<T>& cn);
00465
00466
00467
00468
00469 template<typename T>
00470 inline complex<T> sin(const complex<T>& cn);
00471
00472
00473
00474
00475 template<typename T>
00476 inline complex<T> sinh(const complex<T>& cn);
00477
00478
00479
00480
00481 template<typename T>
00482 inline complex<T> asin(const complex<T>& cn);
00483
00484
00485
00486
00487
00488
00489
00490 template<typename T>
00491 complex<T> sqrt(const complex<T>& cn);
00492
00493
00494
00495
00496
00497
00498
00499 template<typename T>
00500 inline complex<T> cbrt(const complex<T>& cn);
00501
00502
00503
00504
00505 template<typename T>
00506 inline complex<T> cubeRoot(const complex<T>& cn);
00507
00508
00509
00510
00511 template<typename T>
00512 inline complex<T> tan(const complex<T>& cn);
00513
00514
00515
00516
00517 template<typename T>
00518 inline complex<T> tanh(const complex<T>& cn);
00519
00520
00521
00522
00523 template<typename T>
00524 inline complex<T> atan(const complex<T>& cn);
00525
00526
00527
00528
00529 template<typename T>
00530 inline complex<T> pow(const complex<T>& a, const T& b);
00531
00532
00533
00534
00535 template<typename T>
00536 inline complex<T> pow(const complex<T>& a, const complex<T>& b);
00537
00538
00539
00540
00541 template<typename T>
00542 inline complex<T> pow(const T& a, const complex<T>& b);
00543
00544
00545
00546
00547
00548
00549
00550 template <typename T>
00551 bool read(ioHandler& handler,complex<T>& p,const bool complete=true);
00552
00553
00554
00555
00556
00557
00558
00559 template<typename T>
00560 bool write(ioHandler& handler,const complex<T>& p,const bool complete=true);
00561
00562
00563
00564
00565 typedef complex<float> fcomplex;
00566
00567
00568
00569
00570 typedef complex<double> dcomplex;
00571
00572 }
00573
00574 namespace std {
00575
00576 template<typename T>
00577 istream& operator>>(istream& in, cvr::complex<T>& a);
00578
00579 template<typename T>
00580 inline ostream& operator<<(ostream& out, const cvr::complex<T>& a);
00581
00582 }
00583
00584 #include "cvrComplex_inline.h"
00585 #include "cvrComplex_template.h"
00586
00587 #endif