-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlatin_center_dataset.cpp
768 lines (701 loc) · 14.1 KB
/
latin_center_dataset.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
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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
# include <cstdlib>
# include <iostream>
# include <iomanip>
# include <cmath>
# include <ctime>
# include <fstream>
# include <cstring>
# include <sstream>
using namespace std;
int main ( int argc, char *argv[] );
int get_seed ( );
int i4_max ( int i1, int i2 );
int i4_min ( int i1, int i2 );
int i4_uniform ( int ilo, int ihi, int *seed );
void latin_center ( int dim_num, int point_num, int *seed, double x[] );
int *perm_uniform ( int n, int base, int *seed );
float r4_abs ( float x );
int r4_nint ( float x );
void r8mat_write ( string output_filename, int m, int n, double table[] );
void timestamp ( );
//****************************************************************************80
int main ( int argc, char *argv[] )
//****************************************************************************80
//
// Purpose:
//
// MAIN is the main program for LATIN_CENTER_DATASET.
//
// Discussion:
//
// LATIN_CENTER_DATASET generates a Latin Center Square dataset
// and writes it to a file.
//
// Usage:
//
// latin_center_dataset m n seed
//
// where
//
// * M, the spatial dimension,
// * N, the number of points to generate,
// * SEED, the seed, a positive integer.
//
// creates an M by N dataset and writes it to the
// file "latin_center_M_N.txt".
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 15 December 2009
//
// Author:
//
// John Burkardt
//
{
int i;
int m;
ostringstream m_ostring;
int n;
ostringstream n_ostring;
string output_filename;
double *r;
int seed;
timestamp ( );
cout << "\n";
cout << "LATIN_CENTER_DATASET\n";
cout << " C++ version\n";
cout << "\n";
cout << " Compiled on " << __DATE__ << " at " << __TIME__ << ".\n";
cout << "\n";
cout << " Generate a Latin Center Square dataset.\n";
//
// Get the spatial dimension.
//
if ( 1 < argc )
{
m = atoi ( argv[1] );
}
else
{
cout << "\n";
cout << " Enter the value of M\n";
cin >> m;
}
cout << "\n";
cout << " Spatial dimension M = " << m << "\n";
//
// Get the number of points.
//
if ( 2 < argc )
{
n = atoi ( argv[2] );
}
else
{
cout << "\n";
cout << " Enter the number of points N\n";
cin >> n;
}
cout << " Number of points N = " << n << "\n";
//
// Get the seed.
//
if ( 3 < argc )
{
seed = atoi ( argv[3] );
}
else
{
cout << "\n";
cout << " Enter the value of SEED\n";
cin >> seed;
}
cout << " The seed is = " << seed << "\n";
if ( seed == 0 )
{
seed = get_seed ( );
}
//
// Compute the data.
//
r = new double[m*n];
latin_center ( m, n, &seed, r );
//
// Write it to a file.
//
m_ostring << m;
n_ostring << n;
output_filename = "latin_center_" + m_ostring.str ( ) + "_"
+ n_ostring.str ( ) + ".txt";
r8mat_write ( output_filename, m, n, r );
cout << "\n";
cout << " The data was written to the file \""
<< output_filename << "\".\n";
//
// Terminate.
//
delete [] r;
cout << "\n";
cout << "LATIN_CENTER_DATASET:\n";
cout << " Normal end of execution.\n";
cout << "\n";
timestamp ( );
return 0;
}
//****************************************************************************80
int get_seed ( )
//****************************************************************************80
//
// Purpose:
//
// GET_SEED returns a random seed for the random number generator.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 15 September 2003
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Output, int GET_SEED, a random seed value.
//
{
# define I_MAX 2147483647
time_t clock;
int i;
int ihour;
int imin;
int isec;
int seed;
struct tm *lt;
time_t tloc;
//
// If the internal seed is 0, generate a value based on the time.
//
clock = time ( &tloc );
lt = localtime ( &clock );
//
// Hours is 1, 2, ..., 12.
//
ihour = lt->tm_hour;
if ( 12 < ihour )
{
ihour = ihour - 12;
}
//
// Move Hours to 0, 1, ..., 11
//
ihour = ihour - 1;
imin = lt->tm_min;
isec = lt->tm_sec;
seed = isec + 60 * ( imin + 60 * ihour );
//
// We want values in [1,43200], not [0,43199].
//
seed = seed + 1;
//
// Remap SEED from [1,43200] to [1,IMAX].
//
seed = ( int )
( ( ( double ) seed )
* ( ( double ) I_MAX ) / ( 60.0 * 60.0 * 12.0 ) );
//
// Never use a seed of 0.
//
if ( seed == 0 )
{
seed = 1;
}
return seed;
# undef I_MAX
}
//****************************************************************************80
int i4_max ( int i1, int i2 )
//****************************************************************************80
//
// Purpose:
//
// I4_MAX returns the maximum of two I4's.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 05 May 2003
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int I1, I2, two integers to be compared.
//
// Output, int I4_MAX, the larger of I1 and I2.
//
{
if ( i2 < i1 )
{
return i1;
}
else
{
return i2;
}
}
//****************************************************************************80
int i4_min ( int i1, int i2 )
//****************************************************************************80
//
// Purpose:
//
// I4_MIN returns the smaller of two integers.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 05 May 2003
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int I1, I2, two integers to be compared.
//
// Output, int I4_MIN, the smaller of I1 and I2.
//
{
if ( i1 < i2 )
{
return i1;
}
else
{
return i2;
}
}
//****************************************************************************80
int i4_uniform ( int a, int b, int *seed )
//****************************************************************************80
//
// Purpose:
//
// I4_UNIFORM returns a scaled pseudorandom I4.
//
// Discussion:
//
// The pseudorandom number should be uniformly distributed
// between A and B.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 12 November 2006
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Paul Bratley, Bennett Fox, Linus Schrage,
// A Guide to Simulation,
// Springer Verlag, pages 201-202, 1983.
//
// Pierre L'Ecuyer,
// Random Number Generation,
// in Handbook of Simulation,
// edited by Jerry Banks,
// Wiley Interscience, page 95, 1998.
//
// Bennett Fox,
// Algorithm 647:
// Implementation and Relative Efficiency of Quasirandom
// Sequence Generators,
// ACM Transactions on Mathematical Software,
// Volume 12, Number 4, pages 362-376, 1986.
//
// Peter Lewis, Allen Goodman, James Miller
// A Pseudo-Random Number Generator for the System/360,
// IBM Systems Journal,
// Volume 8, pages 136-143, 1969.
//
// Parameters:
//
// Input, int A, B, the limits of the interval.
//
// Input/output, int *SEED, the "seed" value, which should NOT be 0.
// On output, SEED has been updated.
//
// Output, int I4_UNIFORM, a number between A and B.
//
{
int k;
float r;
int value;
if ( *seed == 0 )
{
cerr << "\n";
cerr << "I4_UNIFORM - Fatal error!\n";
cerr << " Input value of SEED = 0.\n";
exit ( 1 );
}
k = *seed / 127773;
*seed = 16807 * ( *seed - k * 127773 ) - k * 2836;
if ( *seed < 0 )
{
*seed = *seed + 2147483647;
}
r = ( float ) ( *seed ) * 4.656612875E-10;
//
// Scale R to lie between A-0.5 and B+0.5.
//
r = ( 1.0 - r ) * ( ( float ) ( i4_min ( a, b ) ) - 0.5 )
+ r * ( ( float ) ( i4_max ( a, b ) ) + 0.5 );
//
// Use rounding to convert R to an integer between A and B.
//
value = r4_nint ( r );
value = i4_max ( value, i4_min ( a, b ) );
value = i4_min ( value, i4_max ( a, b ) );
return value;
}
//****************************************************************************80
void latin_center ( int dim_num, int point_num, int *seed, double x[] )
//****************************************************************************80
//
// Purpose:
//
// LATIN_CENTER returns center points in a Latin square.
//
// Discussion:
//
// In each spatial dimension, there will be exactly one
// point with the coordinate value
//
// ( 1, 3, 5, ..., 2*point_num-1 ) / ( 2 * point_num )
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 12 March 2003
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int DIM_NUM, the spatial dimension.
//
// Input, int POINT_NUM, the number of points.
//
// Input/output, int *SEED, a seed for UNIFORM.
//
// Output, double LATIN_CENTER[DIM_NUM*POINT_NUM], the points.
//
{
int base = 0;
int i;
int j;
int k;
int* perm;
double r;
//
// For spatial dimension I,
// pick a random permutation of 1 to POINT_NUM,
// force the corresponding I-th components of X to lie in the
// interval ( PERM[J]-1, PERM[J] ) / POINT_NUM.
//
k = 0;
for ( i = 0; i < dim_num; i++ )
{
perm = perm_uniform ( point_num, base, seed );
for ( j = 0; j < point_num; j++ )
{
r = 0.5;
x[k] = ( ( ( double ) perm[j] ) + r ) / ( ( double ) point_num );
k = k + 1;
}
delete [] perm;
}
return;
}
//****************************************************************************80
int *perm_uniform ( int n, int base, int *seed )
//****************************************************************************80
//
// Purpose:
//
// PERM_UNIFORM selects a random permutation of N objects.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 31 October 2008
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Albert Nijenhuis, Herbert Wilf,
// Combinatorial Algorithms,
// Academic Press, 1978, second edition,
// ISBN 0-12-519260-6.
//
// Parameters:
//
// Input, int N, the number of objects to be permuted.
//
// Input, int BASE, is 0 for a 0-based permutation and 1 for
// a 1-based permutation.
//
// Input/output, int *SEED, a seed for the random number generator.
//
// Output, int PERM_UNIFORM[N], a permutation of (BASE, BASE+1, ..., BASE+N-1).
//
{
int i;
int j;
int k;
int *p;
p = new int[n];
for ( i = 0; i < n; i++ )
{
p[i] = i + base;
}
for ( i = 0; i < n; i++ )
{
j = i4_uniform ( i, n - 1, seed );
k = p[i];
p[i] = p[j];
p[j] = k;
}
return p;
}
//****************************************************************************80
float r4_abs ( float x )
//****************************************************************************80
//
// Purpose:
//
// R4_ABS returns the absolute value of an R4.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 01 December 2006
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, float X, the quantity whose absolute value is desired.
//
// Output, float R4_ABS, the absolute value of X.
//
{
float value;
if ( 0.0 <= x )
{
value = x;
}
else
{
value = -x;
}
return value;
}
//****************************************************************************80
int r4_nint ( float x )
//****************************************************************************80
//
// Purpose:
//
// R4_NINT returns the nearest integer to an R4.
//
// Example:
//
// X R4_NINT
//
// 1.3 1
// 1.4 1
// 1.5 1 or 2
// 1.6 2
// 0.0 0
// -0.7 -1
// -1.1 -1
// -1.6 -2
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 14 November 2006
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, float X, the value.
//
// Output, int R4_NINT, the nearest integer to X.
//
{
int value;
if ( x < 0.0 )
{
value = - ( int ) ( r4_abs ( x ) + 0.5 );
}
else
{
value = ( int ) ( r4_abs ( x ) + 0.5 );
}
return value;
}
//****************************************************************************80
void r8mat_write ( string output_filename, int m, int n, double table[] )
//****************************************************************************80
//
// Purpose:
//
// R8MAT_WRITE writes an R8MAT file.
//
// Discussion:
//
// An R8MAT is an array of R8's.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 29 June 2009
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, string OUTPUT_FILENAME, the output filename.
//
// Input, int M, the spatial dimension.
//
// Input, int N, the number of points.
//
// Input, double TABLE[M*N], the table data.
//
{
int i;
int j;
ofstream output;
//
// Open the file.
//
output.open ( output_filename.c_str ( ) );
if ( !output )
{
cerr << "\n";
cerr << "R8MAT_WRITE - Fatal error!\n";
cerr << " Could not open the output file.\n";
return;
}
//
// Write the data.
//
for ( j = 0; j < n; j++ )
{
for ( i = 0; i < m; i++ )
{
output << " " << setw(24) << setprecision(16) << table[i+j*m];
}
output << "\n";
}
//
// Close the file.
//
output.close ( );
return;
}
//****************************************************************************80
void timestamp ( )
//****************************************************************************80
//
// Purpose:
//
// TIMESTAMP prints the current YMDHMS date as a time stamp.
//
// Example:
//
// May 31 2001 09:45:54 AM
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 03 October 2003
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// None
//
{
# define TIME_SIZE 40
static char time_buffer[TIME_SIZE];
const struct tm *tm;
size_t len;
time_t now;
now = time ( NULL );
tm = localtime ( &now );
len = strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm );
cout << time_buffer << "\n";
return;
# undef TIME_SIZE
}