C plus plus - cunhapaulo/ReferenceCard GitHub Wiki
This is an absolutly naïve C++ program that plots trigonometric funtions graphics in text mode.
You may compile it with gcc 10.x and the following command line:
$ g++ prog.cc -Wall -Wextra -O2 -march=native -I/opt/wandbox/boost-1.75.0-gcc-10.5.0/include -std=gnu++2a -pedantic
Available to be run at Wandbox.
/*
****************************************
*
* SMALL TEXT PLOTING FUNCTION
*
* Copyright (c) 2023 Paulo Cunha
* ([email protected])
*
*
****************************************
*/
#include <stdio.h>
#include <math.h>
void plot(int, double, char);
double rect_sin(double);
double norm_sin(double);
int main()
{
double i;
double factor=50;
double _PI =3.1315926;
int scale = 140;
for(i=0.0; i < _PI; i+=0.0125)
{
// Plot of sine wave
// plot(scale, factor*sin(4*i), '.');
// Plot of conjunction of two sine waves
plot(scale, factor*(sin(2*i)+sin(12*i))/2, '*');
// Plot of a rectified sine wave
// plot(scale, factor*rect_sin(2*i), '.' );
// Plot of a simple normal sine wave
// plot(scale, factor*norm_sin(2*i), '.' );
// plot(scale, factor*norm_sin(3*i), 'x' );
// Two simultaneous plots
// ((int) (10000.0 * i) % 2 == 0) ? plot(scale, factor*sin(2*i), '.') : plot(scale, factor*cos(4*i), '*');
}
return(0);
}
void plot(int scale, double v, char symbol)
{
int center = scale/2;
int val= (int) v % scale;
if (val >= 0)
{
for(int i=0; i < center; i++) {printf(" ");}
printf("|");
for(int i=0; i < val; i++) {printf(">");}
printf("%c (%3.3f)\n", symbol, v);
}
else
{
for(int i=0; i < center+val; i++) {printf(" ");}
//printf("(%.2f) %c", v, symbol);
printf("%c",symbol);
for(int i=0; i < -val-1 ; i++) {printf("<");}
printf("|\n");
}
}
double rect_sin(double i)
{
return(fabs(sin(4*i)));
}
double norm_sin(double i)
{
return(sin(4*i));
}
|. 0.000
|>>>>. 4.992
|>>>>>>>>>. 9.933
|>>>>>>>>>>>>>>. 14.776
|>>>>>>>>>>>>>>>>>>>. 19.471
|>>>>>>>>>>>>>>>>>>>>>>>. 23.971
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 28.232
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 32.211
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 35.868
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 39.166
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 42.074
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 44.560
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 46.602
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.178
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.272
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.875
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.979
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.583
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.692
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 47.315
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 45.465
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 43.160
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 40.425
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 37.285
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 33.773
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 29.924
|>>>>>>>>>>>>>>>>>>>>>>>>>. 25.775
|>>>>>>>>>>>>>>>>>>>>>. 21.369
|>>>>>>>>>>>>>>>>. 16.749
|>>>>>>>>>>>. 11.962
|>>>>>>>. 7.056
|>>. 2.079
.<|
.<<<<<<|
.<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<|
.<<<<<<<<|
.<<<|
|. 0.841
|>>>>>. 5.827
|>>>>>>>>>>. 10.756
|>>>>>>>>>>>>>>>. 15.577
|>>>>>>>>>>>>>>>>>>>>. 20.242
|>>>>>>>>>>>>>>>>>>>>>>>>. 24.706
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 28.922
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 32.849
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 36.448
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 39.683
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 42.522
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 44.935
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 46.900
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.396
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.408
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.927
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.947
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.468
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.494
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 47.037
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 45.109
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 42.730
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 39.924
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 36.720
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 33.148
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 29.246
|>>>>>>>>>>>>>>>>>>>>>>>>>. 25.051
|>>>>>>>>>>>>>>>>>>>>. 20.606
|>>>>>>>>>>>>>>>. 15.955
|>>>>>>>>>>>. 11.144
|>>>>>>. 6.223
|>. 1.239
.<<|
.<<<<<<<|
.<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<<<<<|
.<<<<<<<<<<<<|
.<<<<<<<|
.<<|
|. 0.000
|>>>>>. 5.986
|>>>>>>>>>>>. 11.885
|>>>>>>>>>>>>>>>>>. 17.614
|>>>>>>>>>>>>>>>>>>>>>>>. 23.089
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 28.232
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 32.969
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 37.232
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 40.960
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 44.098
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 46.602
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.436
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.573
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.997
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.702
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.692
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 46.982
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 44.596
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 41.569
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 37.944
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 33.773
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 29.117
|>>>>>>>>>>>>>>>>>>>>>>>>. 24.041
|>>>>>>>>>>>>>>>>>>. 18.620
|>>>>>>>>>>>>. 12.931
|>>>>>>>. 7.056
|>. 1.080
|>>>>. 4.912
|>>>>>>>>>>. 10.834
|>>>>>>>>>>>>>>>>. 16.599
|>>>>>>>>>>>>>>>>>>>>>>. 22.126
|>>>>>>>>>>>>>>>>>>>>>>>>>>>. 27.335
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 32.150
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 36.503
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 40.331
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 43.579
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 46.200
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.157
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.421
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.974
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.808
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.926
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 47.341
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 45.074
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 42.159
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 38.638
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 34.561
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 29.987
|>>>>>>>>>>>>>>>>>>>>>>>>. 24.982
|>>>>>>>>>>>>>>>>>>>. 19.618
|>>>>>>>>>>>>>. 13.971
|>>>>>>>>. 8.123
|>>. 2.159
|>>>. 3.837
|>>>>>>>>>. 9.777
|>>>>>>>>>>>>>>>. 15.577
|>>>>>>>>>>>>>>>>>>>>>. 21.153
|>>>>>>>>>>>>>>>>>>>>>>>>>>. 26.424
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 31.316
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 35.757
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 39.683
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 43.039
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 45.776
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 47.855
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.245
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.927
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.891
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.137
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 47.677
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 45.531
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 42.730
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 39.314
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 35.333
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 30.844
|>>>>>>>>>>>>>>>>>>>>>>>>>. 25.911
|>>>>>>>>>>>>>>>>>>>>. 20.606
|>>>>>>>>>>>>>>>. 15.004
|>>>>>>>>>. 9.186
|>>>. 3.237
|>>. 2.760
|>>>>>>>>. 8.716
|>>>>>>>>>>>>>>. 14.548
|>>>>>>>>>>>>>>>>>>>>. 20.170
|>>>>>>>>>>>>>>>>>>>>>>>>>. 25.502
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 30.467
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 34.994
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 39.017
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 42.480
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 45.331
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 47.531
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.047
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.857
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.951
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.326
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 47.991
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 45.966
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 43.281
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 39.972
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 36.089
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 31.687
|>>>>>>>>>>>>>>>>>>>>>>>>>>. 26.829
|>>>>>>>>>>>>>>>>>>>>>. 21.585
|>>>>>>>>>>>>>>>>. 16.030
|>>>>>>>>>>. 10.245
|>>>>. 4.313
|>. 1.681
|>>>>>>>. 7.651
|>>>>>>>>>>>>>. 13.511
|>>>>>>>>>>>>>>>>>>>. 19.177
|>>>>>>>>>>>>>>>>>>>>>>>>. 24.567
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 29.604
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 34.214
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 38.333
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 41.901
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 44.865
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 47.185
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.826
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.764
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.987
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.491
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.283
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 46.381
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 43.811
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 40.611
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 36.828
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 32.514
|>>>>>>>>>>>>>>>>>>>>>>>>>>>. 27.733
|>>>>>>>>>>>>>>>>>>>>>>. 22.553
|>>>>>>>>>>>>>>>>>. 17.049
|>>>>>>>>>>>. 11.300
|>>>>>. 5.388
|. 0.602
|>>>>>>. 6.583
|>>>>>>>>>>>>. 12.469
|>>>>>>>>>>>>>>>>>>. 18.176
|>>>>>>>>>>>>>>>>>>>>>>>. 23.621
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 28.727
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 33.419
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 37.631
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 41.302
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 44.378
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 46.817
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.582
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.648
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 50.000
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.633
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.552
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 46.773
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 44.321
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 41.232
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 37.549
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 33.327
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 28.625
|>>>>>>>>>>>>>>>>>>>>>>>. 23.512
|>>>>>>>>>>>>>>>>>>. 18.060
|>>>>>>>>>>>>. 12.349
|>>>>>>. 6.460
|. 0.478
|>>>>>. 5.511
|>>>>>>>>>>>. 11.420
|>>>>>>>>>>>>>>>>>. 17.166
|>>>>>>>>>>>>>>>>>>>>>>. 22.664
|>>>>>>>>>>>>>>>>>>>>>>>>>>>. 27.836
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 32.609
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 36.912
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 40.684
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 43.871
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 46.427
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.315
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.508
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.990
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.752
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.799
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 47.144
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 44.810
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 41.833
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 38.253
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 34.124
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 29.504
|>>>>>>>>>>>>>>>>>>>>>>>>. 24.459
|>>>>>>>>>>>>>>>>>>>. 19.063
|>>>>>>>>>>>>>. 13.392
|>>>>>>>. 7.529
|>. 1.557
|>>>>. 4.437
|>>>>>>>>>>. 10.367
|>>>>>>>>>>>>>>>>. 16.148
|>>>>>>>>>>>>>>>>>>>>>. 21.697
|>>>>>>>>>>>>>>>>>>>>>>>>>>. 26.933
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 31.783
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 36.175
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 40.047
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 43.343
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 46.015
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 48.026
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.346
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.956
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.848
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 49.023
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 47.492
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 45.279
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 42.414
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 38.940
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 34.905
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. 30.368
|>>>>>>>>>>>>>>>>>>>>>>>>>. 25.395
|>>>>>>>>>>>>>>>>>>>>. 20.056
|>>>>>>>>>>>>>>. 14.429
|>>>>>>>>. 8.594
|* 0.000
|>>>>* 4.361
|>>>>>>>>* 8.637
|>>>>>>>>>>>>* 12.747
|>>>>>>>>>>>>>>>>* 16.612
|>>>>>>>>>>>>>>>>>>>>* 20.158
|>>>>>>>>>>>>>>>>>>>>>>>* 23.319
|>>>>>>>>>>>>>>>>>>>>>>>>>>* 26.038
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 28.268
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 29.971
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 31.122
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 31.710
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 31.734
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 31.207
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 30.153
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 28.609
|>>>>>>>>>>>>>>>>>>>>>>>>>>* 26.622
|>>>>>>>>>>>>>>>>>>>>>>>>* 24.250
|>>>>>>>>>>>>>>>>>>>>>* 21.559
|>>>>>>>>>>>>>>>>>>* 18.620
|>>>>>>>>>>>>>>>* 15.514
|>>>>>>>>>>>>* 12.320
|>>>>>>>>>* 9.124
|>>>>>>* 6.007
|>>>* 3.053
|* 0.338
*<|
*<<<|
*<<<<|
*<<<<<|
*<<<<<<|
*<<<<<<|
*<<<<<|
*<<<<|
*<<<|
*<|
|* 0.264
|>>>* 3.235
|>>>>>>* 6.568
|>>>>>>>>>>* 10.198
|>>>>>>>>>>>>>>* 14.051
|>>>>>>>>>>>>>>>>>>* 18.048
|>>>>>>>>>>>>>>>>>>>>>>* 22.106
|>>>>>>>>>>>>>>>>>>>>>>>>>>* 26.141
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 30.069
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 33.808
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 37.280
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 40.413
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 43.143
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 45.412
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 47.175
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 48.396
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 49.053
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 49.133
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 48.640
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 47.587
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 46.001
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 43.920
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 41.392
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 38.477
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 35.240
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 31.757
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 28.106
|>>>>>>>>>>>>>>>>>>>>>>>>* 24.369
|>>>>>>>>>>>>>>>>>>>>* 20.631
|>>>>>>>>>>>>>>>>* 16.975
|>>>>>>>>>>>>>* 13.483
|>>>>>>>>>>* 10.232
|>>>>>>>* 7.295
|>>>>* 4.734
|>>* 2.607
|* 0.959
|* -0.177
|* -0.777
|* -0.832
|* -0.343
|* 0.674
|>>* 2.193
|>>>>* 4.174
|>>>>>>* 6.569
|>>>>>>>>>* 9.318
|>>>>>>>>>>>>* 12.354
|>>>>>>>>>>>>>>>* 15.603
|>>>>>>>>>>>>>>>>>>* 18.986
|>>>>>>>>>>>>>>>>>>>>>>* 22.421
|>>>>>>>>>>>>>>>>>>>>>>>>>* 25.823
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 29.109
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 32.199
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 35.014
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 37.485
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 39.546
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 41.145
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 42.235
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 42.784
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 42.770
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 42.183
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 41.028
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 39.320
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 37.088
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 34.371
|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* 31.219
|>>>>>>>>>>>>>>>>>>>>>>>>>>>* 27.693
|>>>>>>>>>>>>>>>>>>>>>>>* 23.861
|>>>>>>>>>>>>>>>>>>>* 19.797
|>>>>>>>>>>>>>>>* 15.581
|>>>>>>>>>>>* 11.297
|>>>>>>>* 7.029
|>>* 2.861
*|
*<<<|
*<<<<<<<|
*<<<<<<<<<<|
*<<<<<<<<<<<<|
*<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<|
*<<<<<<<<<<<<|
*<<<<<<<<<|
*<<<<<<<|
*<<<<|
*<|
|>* 1.050
|>>>>* 4.143
|>>>>>>>* 7.124
|>>>>>>>>>* 9.913
|>>>>>>>>>>>>* 12.434
|>>>>>>>>>>>>>>* 14.616
|>>>>>>>>>>>>>>>>* 16.398
|>>>>>>>>>>>>>>>>>* 17.726
|>>>>>>>>>>>>>>>>>>* 18.556
|>>>>>>>>>>>>>>>>>>* 18.856
|>>>>>>>>>>>>>>>>>>* 18.606
|>>>>>>>>>>>>>>>>>* 17.799
|>>>>>>>>>>>>>>>>* 16.440
|>>>>>>>>>>>>>>* 14.546
|>>>>>>>>>>>>* 12.147
|>>>>>>>>>* 9.283
|>>>>>>* 6.007
|>>* 2.379
*|
*<<<<|
*<<<<<<<<|
*<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<|
*<<<<<<<<<|
*<<<<<<|
*<<<|
*<|
*|
|* 0.067
|* 0.731
|* 0.856
|* 0.433
|* -0.529
*<|
*<<|
*<<<<<|
*<<<<<<<<|
*<<<<<<<<<<<|
*<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<|
*<<<<<<<<<<|
*<<<<<<|
*<<<|
*|
|>* 1.500
|>>>* 3.737
|>>>>>* 5.477
|>>>>>>* 6.691
|>>>>>>>* 7.359
|>>>>>>>* 7.477
|>>>>>>>* 7.052
|>>>>>>* 6.103
|>>>>* 4.662
|>>* 2.772
|* 0.486
*<|
*<<<<|
*<<<<<<<|
*<<<<<<<<<<|
*<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<<<<|
*<<<<<<<<<<<<<|
*<<<<<<<<<|
*<<<<|
Exit Code:
0