-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathc4lib_prb.cpp
399 lines (347 loc) · 7.57 KB
/
c4lib_prb.cpp
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
# include <cstdlib>
# include <iostream>
# include <iomanip>
# include <cmath>
# include <complex>
using namespace std;
# include "c4lib.hpp"
int main ( );
void test0061 ( );
void test0062 ( );
void test0063 ( );
void test0064 ( );
void test0065 ( );
void test0066 ( );
void test0067 ( );
//****************************************************************************80
int main ( )
//****************************************************************************80
//
// Purpose:
//
// MAIN is the main program for C4LIB_PRB.
//
// Discussion:
//
// C4LIB_PRB tests the C4LIB library.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 06 November 2010
//
// Author:
//
// John Burkardt
//
{
timestamp ( );
cout << "\n";
cout << "C4LIB_PRB\n";
cout << " C++ version\n";
cout << " Test the C4LIB library.\n";
test0061 ( );
test0062 ( );
test0063 ( );
test0064 ( );
test0065 ( );
test0066 ( );
test0067 ( );
//
// Terminate.
//
cout << "\n";
cout << "C4LIB_PRB\n";
cout << " Normal end of execution.\n";
cout << "\n";
timestamp ( );
return 0;
}
//****************************************************************************80
void test0061 ( )
//****************************************************************************80
//
// Purpose:
//
// TEST0061 tests C4_ARG.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 11 June 2010
//
// Author:
//
// John Burkardt
//
{
float argument;
complex <float> c1;
int seed = 123456789;
int test;
int test_num = 10;
cout << "\n";
cout << "TEST0061\n";
cout << " C4_ARG computes the argument of a C4.\n";
cout << "\n";
cout <<
" C1=random ARG=C4_ARG(C1)\n";
cout << "\n";
for ( test = 0; test < test_num; test++ )
{
c1 = c4_uniform_01 ( seed );
argument = c4_arg ( c1 );
cout << " (" << setw(10) << real ( c1 )
<< ", " << setw(10) << imag ( c1 ) << ")"
<< " " << setw(10) << argument << "\n";
}
return;
}
//****************************************************************************80
void test0062 ( )
//****************************************************************************80
//
// Purpose:
//
// TEST0062 tests C4_CUBE_ROOT.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 11 June 2010
//
// Author:
//
// John Burkardt
//
{
complex <float> c1;
complex <float> c2;
complex <float> c3;
int seed = 123456789;
int test;
int test_num = 10;
cout << "\n";
cout << "TEST0062\n";
cout << " C4_CUBE_ROOT computes the principal cube root of a C4.\n";
cout << "\n";
cout <<
" C1=random C2=C4_CUBE_ROOT(C1) C3=C2*C2*C2\n";
cout << "\n";
for ( test = 0; test < test_num; test++ )
{
c1 = c4_uniform_01 ( seed );
c2 = c4_cube_root ( c1 );
c3 = c2 * c2 * c2;
cout << " (" << setw(10) << real ( c1 )
<< ", " << setw(10) << imag ( c1 ) << ")"
<< " (" << setw(10) << real ( c2 )
<< ", " << setw(10) << imag ( c2 ) << ")"
<< " (" << setw(10) << real ( c3 )
<< ", " << setw(10) << imag ( c3 ) << ")\n";
}
return;
}
//****************************************************************************80
void test0063 ( )
//****************************************************************************80
//
// Purpose:
//
// TEST0063 tests C4_MAG.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 11 June 2010
//
// Author:
//
// John Burkardt
//
{
complex <float> c1;
float magnitude;
int seed = 123456789;
int test;
int test_num = 10;
cout << "\n";
cout << "TEST0063\n";
cout << " C4_MAG computes the magnitude of a C4.\n";
cout << "\n";
cout <<
" C1=random MAG=C4_MAG(C1)\n";
cout << "\n";
for ( test = 0; test < test_num; test++ )
{
c1 = c4_uniform_01 ( seed );
magnitude = c4_mag ( c1 );
cout << " (" << setw(10) << real ( c1 )
<< ", " << setw(10) << imag ( c1 ) << ")"
<< " " << setw(10) << magnitude << "\n";
}
return;
}
//****************************************************************************80
void test0064 ( )
//****************************************************************************80
//
// Purpose:
//
// TEST0064 tests C4_NORMAL_01.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 11 June 2010
//
// Author:
//
// John Burkardt
//
{
int seed = 123456789;
int test;
int test_num = 20;
complex <float> x;
cout << "\n";
cout << "TEST0064\n";
cout << " C4_NORMAL_01 generates unit pseudonormal\n";
cout << " complex values.\n";
cout << " Using initial random number seed = " << seed << "\n";
cout << "\n";
for ( test = 1; test <= test_num; test++ )
{
x = c4_normal_01 ( seed );
cout << " " << setw(10) << real ( x )
<< " " << setw(10) << imag ( x ) << "\n";
}
return;
}
//****************************************************************************80
void test0065 ( )
//****************************************************************************80
//
// Purpose:
//
// TEST0065 tests C4_SQRT.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 15 April 2007
//
// Author:
//
// John Burkardt
//
{
complex <float> c1;
complex <float> c2;
complex <float> c3;
int seed = 123456789;
int test;
int test_num = 10;
cout << "\n";
cout << "TEST0065\n";
cout << " C4_SQRT computes the principal square root of a C4.\n";
cout << "\n";
cout <<
" C1=random C2=C4_SQRT(C1) C3=C2*C2\n";
cout << "\n";
for ( test = 0; test < test_num; test++ )
{
c1 = c4_uniform_01 ( seed );
c2 = c4_sqrt ( c1 );
c3 = c2 * c2;
cout << " (" << setw(10) << real ( c1 )
<< ", " << setw(10) << imag ( c1 ) << ")"
<< " (" << setw(10) << real ( c2 )
<< ", " << setw(10) << imag ( c2 ) << ")"
<< " (" << setw(10) << real ( c3 )
<< ", " << setw(10) << imag ( c3 ) << ")\n";
}
return;
}
//****************************************************************************80
void test0066 ( )
//****************************************************************************80
//
// Purpose:
//
// TEST0066 tests C4MAT_UNIFORM_01_NEW.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 11 June 2010
//
// Author:
//
// John Burkardt
//
{
complex <float> *a;
int m = 5;
int n = 4;
int seed = 123456789;
cout << "\n";
cout << "TEST0066\n";
cout << " C4MAT_UNIFORM_01_NEW computes a random complex matrix.\n";
a = c4mat_uniform_01_new ( m, n, seed );
c4mat_print ( m, n, a, " The matrix:" );
delete [] a;
return;
}
//****************************************************************************80
void test0067 ( )
//****************************************************************************80
//
// Purpose:
//
// TEST0067 tests C4VEC_INDICATOR_NEW;
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 11 June 2010
//
// Author:
//
// John Burkardt
//
{
complex <float> *a;
int n = 10;
cout << "\n";
cout << "TEST0067\n";
cout << " C4VEC_INDICATOR_NEW sets A = (1-1i,2-2i,...,N-Ni)\n";
a = c4vec_indicator_new ( n );
c4vec_print ( n, a, " The indicator vector:" );
delete [] a;
return;
}