Menu

[r193]: / trunk / include / small / zgematrix_small-functions.hpp  Maximize  Restore  History

Download this file

568 lines (514 with data), 17.7 kB

  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
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
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
256
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
//=============================================================================
/*! convert zgematrix_small to zgematrix */
template<CPPL_INT m, CPPL_INT n>
inline _zgematrix zgematrix_small<m,n>::to_zgematrix() const
{CPPL_VERBOSE_REPORT;
zgematrix mat(m,n);
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
mat(i,j) =(*this)(i,j);
}
}
return _(mat);
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
/*! operator() */
template<CPPL_INT m, CPPL_INT n>
inline comple& zgematrix_small<m,n>::operator()(const CPPL_INT& i, const CPPL_INT& j)
{CPPL_VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if( i<0 || j<0 || m<=i || n<=j ){
ERROR_REPORT;
std::cerr << "The required component is out of the matrix size." << std::endl
<< "Your input is (" << i << "," << j << "), whereas the matrix size is " << m << "x" << n << "." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
return array[i+m*j];
}
//=============================================================================
/*! operator() for const */
template<CPPL_INT m, CPPL_INT n>
inline comple zgematrix_small<m,n>::operator()(const CPPL_INT& i, const CPPL_INT& j) const
{CPPL_VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if( i<0 || j<0 || m<=i || n<=j ){
ERROR_REPORT;
std::cerr << "The required component is out of the matrix size." << std::endl
<< "Your input is (" << i << "," << j << "), whereas the matrix size is " << m << "x" << n << "." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
return array[i+m*j];
}
//=============================================================================
/*! set */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n>& zgematrix_small<m,n>::set(const CPPL_INT& i, const CPPL_INT& j, const comple& v)
{CPPL_VERBOSE_REPORT;
(*this)(i,j) =v;
return *this;
}
//=============================================================================
/*! operator<< */
template<CPPL_INT m, CPPL_INT n>
inline std::ostream& operator<<(std::ostream& s, const zgematrix_small<m,n>& A)
{CPPL_VERBOSE_REPORT;
s << std::setiosflags(std::ios::showpos);
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
s << " " << A(i,j);
}
s << std::endl;
}
return s;
}
//=============================================================================
/*! write to file */
template<CPPL_INT m, CPPL_INT n>
inline void zgematrix_small<m,n>::write(const char* filename) const
{CPPL_VERBOSE_REPORT;
std::ofstream ofs(filename, std::ios::trunc);
ofs.setf(std::cout.flags());
ofs.precision(std::cout.precision());
ofs.width(std::cout.width());
ofs.fill(std::cout.fill());
ofs << "#zgematrix" << " " << m << " " << n << std::endl;
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
ofs << (*this)(i,j) << " ";
}
ofs << std::endl;
}
ofs.close();
}
//=============================================================================
/*! read from file */
template<CPPL_INT m, CPPL_INT n>
inline void zgematrix_small<m,n>::read(const char* filename)
{CPPL_VERBOSE_REPORT;
std::ifstream s( filename );
if(!s){
ERROR_REPORT;
std::cerr << "The file \"" << filename << "\" can not be opened." << std::endl;
exit(1);
}
std::string id;
s >> id;
if( id != "zgematrix" && id != "#zgematrix" ){
ERROR_REPORT;
std::cerr << "The type name of the file \"" << filename << "\" is not zgematrix." << std::endl
<< "Its type name was " << id << " ." << std::endl;
exit(1);
}
CPPL_INT _m, _n;
s >> _m >> _n;
if(m!=_m || n!=_n){
ERROR_REPORT;
std::cerr << "Matrix size is invalid." << std::endl;
exit(1);
}
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++ ){
s >> operator()(i,j);
}
}
if(s.eof()){
ERROR_REPORT;
std::cerr << "There is something is wrong with the file \"" << filename << "\"." << std::endl
<< "Most likely, there is not enough data components, or a linefeed code or space code is missing at the end of the last line." << std::endl;
exit(1);
}
s >> id;
if(!s.eof()){
ERROR_REPORT;
std::cerr << "There is something is wrong with the file \"" << filename << "\"." << std::endl
<< "Most likely, there are extra data components." << std::endl;
exit(1);
}
s.close();
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
/*! return transposed zgematrix_small */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<n,m> t(const zgematrix_small<m,n>& A)
{CPPL_VERBOSE_REPORT;
zgematrix_small<n,m> X;
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
X(j,i) =A(i,j);
}
}
return X;
}
//=============================================================================
/*! return its trace */
template<CPPL_INT m, CPPL_INT n>
inline comple trace(const zgematrix_small<m,n>& A)
{CPPL_VERBOSE_REPORT;
comple trace =comple(0.,0);
const CPPL_INT imax =std::min(m,n);
for(CPPL_INT i=0; i<imax; i++){
trace +=A(i,i);
}
return trace;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
/*! zero */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n>& zgematrix_small<m,n>::zero()
{CPPL_VERBOSE_REPORT;
for(CPPL_INT k=0; k<m*n; k++){
array[k] =comple(0.,0.);
}
return *this;
}
//=============================================================================
/*! identity */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n>& zgematrix_small<m,n>::identity()
{CPPL_VERBOSE_REPORT;
zero();
const CPPL_INT kmax =std::min(m,n);
for(CPPL_INT k=0; k<kmax; k++){
(*this)(k,k) =1.;
}
return *this;
}
//=============================================================================
/*! return the j-th column vector */
template<CPPL_INT m, CPPL_INT n>
inline zcovector_small<m> zgematrix_small<m,n>::col(const CPPL_INT& j) const
{CPPL_VERBOSE_REPORT;
zcovector_small<m> vec;
for(CPPL_INT i=0; i<m; i++){
vec(i) =(*this)(i,j);
}
return vec;
}
//=============================================================================
/*! return the i-th row vector */
template<CPPL_INT m, CPPL_INT n>
inline zrovector_small<n> zgematrix_small<m,n>::row(const CPPL_INT& i) const
{CPPL_VERBOSE_REPORT;
zrovector_small<n> vec;
for(CPPL_INT j=0; j<n; j++){
vec(j)=(*this)(i,j);
}
return vec;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
/*! zgematrix_small+=zgematrix_small operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n>& operator+=(zgematrix_small<m,n>& A, const zgematrix_small<m,n>& B)
{CPPL_VERBOSE_REPORT;
for(CPPL_INT k=0; k<m*n; k++){
A.array[k] +=B.array[k];
}
return A;
}
//=============================================================================
/*! zgematrix_small-=zgematrix_small operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n>& operator-=(zgematrix_small<m,n>& A, const zgematrix_small<m,n>& B)
{CPPL_VERBOSE_REPORT;
for(CPPL_INT k=0; k<m*n; k++){
A.array[k] -=B.array[k];
}
return A;
}
//=============================================================================
/*! zgematrix_small*=zgematrix_small operator */
template<CPPL_INT m, CPPL_INT l, CPPL_INT n>
inline zgematrix_small<m,n>& operator*=(zgematrix_small<m,l>& A, const zgematrix_small<l,n>& B)
{CPPL_VERBOSE_REPORT;
zgematrix_small<m,n> X;
X.zero();
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
for(CPPL_INT k=0; k<l; k++){
X(i,j) += A(i,k)*B(k,j);
}
}
}
A =X;
return A;
}
//=============================================================================
/*! zgematrix_small*=double operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n>& operator*=(zgematrix_small<m,n>& A, const double& v)
{CPPL_VERBOSE_REPORT;
for(CPPL_INT k=0; k<m*n; k++){
A.array[k] *=v;
}
return A;
}
//=============================================================================
/*! zgematrix_small*=comple operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n>& operator*=(zgematrix_small<m,n>& A, const comple& v)
{CPPL_VERBOSE_REPORT;
for(CPPL_INT k=0; k<m*n; k++){
A.array[k] *=v;
}
return A;
}
//=============================================================================
/*! zgematrix_small/=double operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n>& operator/=(zgematrix_small<m,n>& A, const double& v)
{CPPL_VERBOSE_REPORT;
for(CPPL_INT k=0; k<m*n; k++){
A.array[k] /=v;
}
return A;
}
//=============================================================================
/*! zgematrix_small/=comple operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n>& operator/=(zgematrix_small<m,n>& A, const comple& v)
{CPPL_VERBOSE_REPORT;
for(CPPL_INT k=0; k<m*n; k++){
A.array[k] /=v;
}
return A;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
/*! unary + operator */
template<CPPL_INT m, CPPL_INT n>
inline const zgematrix_small<m,n>& operator+(const zgematrix_small<m,n>& A)
{CPPL_VERBOSE_REPORT;
return A;
}
//=============================================================================
/*! unary - operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n> operator-(const zgematrix_small<m,n>& A)
{CPPL_VERBOSE_REPORT;
zgematrix_small<m,n> X;
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
X(i,j) =-A(i,j);
}
}
return X;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
/*! zgematrix_small+zgematrix_small operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n> operator+(const zgematrix_small<m,n>& A, const zgematrix_small<m,n>& B)
{CPPL_VERBOSE_REPORT;
zgematrix_small<m,n> C;
for(int i=0; i<m; i++){
for(int j=0; j<n; j++){
C(i,j) =A(i,j)+B(i,j);
}
}
return C;
}
//=============================================================================
/*! zgematrix_small+zhematrix_small operator */
template<CPPL_INT n>
inline zgematrix_small<n,n> operator+(const zgematrix_small<n,n>& A, const zhematrix_small<n>& B)
{CPPL_VERBOSE_REPORT;
zgematrix_small<n,n> X;
for(CPPL_INT i=0; i<n; i++){
for(CPPL_INT j=0; j<i; j++){
X(i,j) =A(i,j)+B(i,j);
}
for(CPPL_INT j=i; j<n; j++){
X(i,j) =A(i,j)+B(j,i);
}
}
return X;
}
//=============================================================================
/*! zgematrix_small-zgematrix_small operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n> operator-(const zgematrix_small<m,n>& A, const zgematrix_small<m,n>& B)
{CPPL_VERBOSE_REPORT;
zgematrix_small<m,n> C;
for(int i=0; i<m; i++){
for(int j=0; j<n; j++){
C(i,j)=A(i,j)-B(i,j);
}
}
return C;
}
//=============================================================================
/*! zgematrix_small-zhematrix_small operator */
template<CPPL_INT n>
inline zgematrix_small<n,n> operator-(const zgematrix_small<n,n>& A, const zhematrix_small<n>& B)
{CPPL_VERBOSE_REPORT;
zgematrix_small<n,n> X;
for(CPPL_INT i=0; i<n; i++){
for(CPPL_INT j=0; j<=i; j++){
X(i,j)=A(i,j)-B(i,j);
}
for(CPPL_INT j=i+1; j<n; j++){
X(i,j)=A(i,j)-B(j,i);
}
}
return X;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
/*! zgematrix_small*zcovector_small operator */
template<CPPL_INT m, CPPL_INT n>
inline zcovector_small<m> operator*(const zgematrix_small<m,n>& A, const zcovector_small<n>& B)
{CPPL_VERBOSE_REPORT;
zcovector_small<m> C;
C.zero();
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
C(i) +=A(i,j)*B(j);
}
}
return C;
}
//=============================================================================
/*! zgematrix_small*zgematrix_small operator */
template<CPPL_INT m, CPPL_INT l, CPPL_INT n>
inline zgematrix_small<m,n> operator*(const zgematrix_small<m,l>& A, const zgematrix_small<l,n>& B)
{CPPL_VERBOSE_REPORT;
zgematrix_small<m,n> C;
C.zero();
for(int i=0; i<m; i++){
for(int j=0; j<n; j++){
for(int k=0; k<l; k++){
C(i,j) +=A(i,k)*B(k,j);
}
}
}
return C;
}
//=============================================================================
/*! zgematrix_small+zhematrix_small operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n> operator*(const zgematrix_small<m,n>& A, const zhematrix_small<n>& B)
{CPPL_VERBOSE_REPORT;
zgematrix_small<m,n> X;
X.zero();
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
for(CPPL_INT k=0; k<j; k++){
X(i,j) +=A(i,k)*B(j,k);
}
for(CPPL_INT k=j; k<n; k++){
X(i,j) +=A(i,k)*B(k,j);
}
}
}
return X;
}
//=============================================================================
/*! zgematrix_small*double operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n> operator*(const zgematrix_small<m,n>& A, const double& v)
{CPPL_VERBOSE_REPORT;
zgematrix_small<m,n> C;
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
C(i,j) =A(i,j)*v;
}
}
return C;
}
//=============================================================================
/*! zgematrix_small*comple operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n> operator*(const zgematrix_small<m,n>& A, const comple& v)
{CPPL_VERBOSE_REPORT;
zgematrix_small<m,n> C;
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
C(i,j) =A(i,j)*v;
}
}
return C;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
/*! zgematrix_small/double operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n> operator/(const zgematrix_small<m,n>& A, const double& v)
{CPPL_VERBOSE_REPORT;
zgematrix_small<m,n> C;
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
C(i,j) =A(i,j)/v;
}
}
return C;
}
//=============================================================================
/*! zgematrix_small/comple operator */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n> operator/(const zgematrix_small<m,n>& A, const comple& v)
{CPPL_VERBOSE_REPORT;
zgematrix_small<m,n> C;
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
C(i,j) =A(i,j)/v;
}
}
return C;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//=============================================================================
/*! Hadamerd product */
template<CPPL_INT m, CPPL_INT n>
inline zgematrix_small<m,n> hadamerd(const zgematrix_small<m,n>& A, const zgematrix_small<m,n>& B)
{CPPL_VERBOSE_REPORT;
zgematrix_small<m,n> C;
for(CPPL_INT i=0; i<m; i++){
for(CPPL_INT j=0; j<n; j++){
C(i,j) =A(i,j)*B(i,j);
}
}
return C;
}
//=============================================================================
/*! Hadamerd product */
template<CPPL_INT n>
inline zgematrix_small<n,n> hadamerd(const zgematrix_small<n,n>& A, const zhematrix_small<n>& B)
{CPPL_VERBOSE_REPORT;
zgematrix_small<n,n> C;
for(CPPL_INT i=0; i<n; i++){
for(CPPL_INT j=0; j<=i; j++){
C(i,j) =A(i,j)*B(i,j);
}
for(CPPL_INT j=i+1; j<n; j++){
C(i,j) =A(i,j)*conj(B(j,i));
}
}
return C;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.