Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

lsfit.ps 41 KB

You have to be logged in to leave a comment. Sign In
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
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.0.0_831abca_2019.06.27 [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Thu Jun 27 12:16:20 2019
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
  115. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
  116. {pop pop} ifelse} ifelse
  117. }!
  118. /Standard+_Encoding [
  119. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  120. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  125. /zero /one /two /three /four /five /six /seven
  126. /eight /nine /colon /semicolon /less /equal /greater /question
  127. /at /A /B /C /D /E /F /G
  128. /H /I /J /K /L /M /N /O
  129. /P /Q /R /S /T /U /V /W
  130. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  131. /quoteleft /a /b /c /d /e /f /g
  132. /h /i /j /k /l /m /n /o
  133. /p /q /r /s /t /u /v /w
  134. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  135. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  136. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  137. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  138. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  139. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  140. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  141. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  142. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  143. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  144. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  145. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  146. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  147. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  148. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  149. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  150. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  151. ] def
  152. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  153. /F0 {/Helvetica Y}!
  154. /F1 {/Helvetica-Bold Y}!
  155. /F2 {/Helvetica-Oblique Y}!
  156. /F3 {/Helvetica-BoldOblique Y}!
  157. /F4 {/Times-Roman Y}!
  158. /F5 {/Times-Bold Y}!
  159. /F6 {/Times-Italic Y}!
  160. /F7 {/Times-BoldItalic Y}!
  161. /F8 {/Courier Y}!
  162. /F9 {/Courier-Bold Y}!
  163. /F10 {/Courier-Oblique Y}!
  164. /F11 {/Courier-BoldOblique Y}!
  165. /F12 {/Symbol Y}!
  166. /F13 {/AvantGarde-Book Y}!
  167. /F14 {/AvantGarde-BookOblique Y}!
  168. /F15 {/AvantGarde-Demi Y}!
  169. /F16 {/AvantGarde-DemiOblique Y}!
  170. /F17 {/Bookman-Demi Y}!
  171. /F18 {/Bookman-DemiItalic Y}!
  172. /F19 {/Bookman-Light Y}!
  173. /F20 {/Bookman-LightItalic Y}!
  174. /F21 {/Helvetica-Narrow Y}!
  175. /F22 {/Helvetica-Narrow-Bold Y}!
  176. /F23 {/Helvetica-Narrow-Oblique Y}!
  177. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  178. /F25 {/NewCenturySchlbk-Roman Y}!
  179. /F26 {/NewCenturySchlbk-Italic Y}!
  180. /F27 {/NewCenturySchlbk-Bold Y}!
  181. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  182. /F29 {/Palatino-Roman Y}!
  183. /F30 {/Palatino-Italic Y}!
  184. /F31 {/Palatino-Bold Y}!
  185. /F32 {/Palatino-BoldItalic Y}!
  186. /F33 {/ZapfChancery-MediumItalic Y}!
  187. /F34 {/ZapfDingbats Y}!
  188. /F35 {/Ryumin-Light-EUC-H Y}!
  189. /F36 {/Ryumin-Light-EUC-V Y}!
  190. /F37 {/GothicBBB-Medium-EUC-H Y}!
  191. /F38 {/GothicBBB-Medium-EUC-V Y}!
  192. /PSL_pathtextdict 26 dict def
  193. /PSL_pathtext
  194. {PSL_pathtextdict begin
  195. /ydepth exch def
  196. /textheight exch def
  197. /just exch def
  198. /offset exch def
  199. /str exch def
  200. /pathdist 0 def
  201. /setdist offset def
  202. /charcount 0 def
  203. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  204. V flattenpath
  205. {movetoproc} {linetoproc}
  206. {curvetoproc} {closepathproc}
  207. pathforall
  208. U N
  209. end
  210. } def
  211. PSL_pathtextdict begin
  212. /movetoproc
  213. { /newy exch def /newx exch def
  214. /firstx newx def /firsty newy def
  215. /ovr 0 def
  216. newx newy transform
  217. /cpy exch def /cpx exch def
  218. } def
  219. /linetoproc
  220. { /oldx newx def /oldy newy def
  221. /newy exch def /newx exch def
  222. /dx newx oldx sub def
  223. /dy newy oldy sub def
  224. /dist dx dup mul dy dup mul add sqrt def
  225. dist 0 ne
  226. { /dsx dx dist div ovr mul def
  227. /dsy dy dist div ovr mul def
  228. oldx dsx add oldy dsy add transform
  229. /cpy exch def /cpx exch def
  230. /pathdist pathdist dist add def
  231. {setdist pathdist le
  232. {charcount str length lt
  233. {setchar} {exit} ifelse}
  234. { /ovr setdist pathdist sub def
  235. exit}
  236. ifelse
  237. } loop
  238. } if
  239. } def
  240. /curvetoproc
  241. { (ERROR: No curveto's after flattenpath!)
  242. print
  243. } def
  244. /closepathproc
  245. {firstx firsty linetoproc
  246. firstx firsty movetoproc
  247. } def
  248. /setchar
  249. { /char str charcount 1 getinterval def
  250. /charcount charcount 1 add def
  251. /charwidth char stringwidth pop def
  252. V cpx cpy itransform T
  253. dy dx atan R
  254. 0 justy M
  255. char show
  256. 0 justy neg G
  257. currentpoint transform
  258. /cpy exch def /cpx exch def
  259. U /setdist setdist charwidth add def
  260. } def
  261. end
  262. /PSL_set_label_heights
  263. {
  264. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  265. /PSL_heights PSL_n_labels array def
  266. 0 1 PSL_n_labels_minus_1
  267. { /psl_k exch def
  268. /psl_label PSL_label_str psl_k get def
  269. PSL_label_font psl_k get cvx exec
  270. psl_label sH /PSL_height edef
  271. PSL_heights psl_k PSL_height put
  272. } for
  273. } def
  274. /PSL_curved_path_labels
  275. { /psl_bits exch def
  276. /PSL_placetext psl_bits 2 and 2 eq def
  277. /PSL_clippath psl_bits 4 and 4 eq def
  278. /PSL_strokeline false def
  279. /PSL_fillbox psl_bits 128 and 128 eq def
  280. /PSL_drawbox psl_bits 256 and 256 eq def
  281. /PSL_n_paths1 PSL_n_paths 1 sub def
  282. /PSL_usebox PSL_fillbox PSL_drawbox or def
  283. PSL_clippath {clipsave N clippath} if
  284. /psl_k 0 def
  285. /psl_p 0 def
  286. 0 1 PSL_n_paths1
  287. { /psl_kk exch def
  288. /PSL_n PSL_path_n psl_kk get def
  289. /PSL_m PSL_label_n psl_kk get def
  290. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  291. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  292. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  296. PSL_curved_path_label
  297. /psl_k psl_k PSL_n add def
  298. /psl_p psl_p PSL_m add def
  299. } for
  300. PSL_clippath {PSL_eoclip} if N
  301. } def
  302. /PSL_curved_path_label
  303. {
  304. /PSL_n1 PSL_n 1 sub def
  305. /PSL_m1 PSL_m 1 sub def
  306. PSL_CT_calcstringwidth
  307. PSL_CT_calclinedist
  308. PSL_CT_excludelabels
  309. PSL_CT_addcutpoints
  310. /PSL_nn1 PSL_nn 1 sub def
  311. /n 0 def
  312. /k 0 def
  313. /j 0 def
  314. /PSL_seg 0 def
  315. /PSL_xp PSL_nn array def
  316. /PSL_yp PSL_nn array def
  317. PSL_xp 0 PSL_xx 0 get put
  318. PSL_yp 0 PSL_yy 0 get put
  319. 1 1 PSL_nn1
  320. { /i exch def
  321. /node_type PSL_kind i get def
  322. /j j 1 add def
  323. PSL_xp j PSL_xx i get put
  324. PSL_yp j PSL_yy i get put
  325. node_type 1 eq
  326. {n 0 eq
  327. {PSL_CT_drawline}
  328. { PSL_CT_reversepath
  329. PSL_CT_textline} ifelse
  330. /j 0 def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. } if
  334. } for
  335. n 0 eq {PSL_CT_drawline} if
  336. } def
  337. /PSL_CT_textline
  338. { PSL_fnt k get cvx exec
  339. /PSL_height PSL_heights k get def
  340. PSL_placetext {PSL_CT_placelabel} if
  341. PSL_clippath {PSL_CT_clippath} if
  342. /n 0 def /k k 1 add def
  343. } def
  344. /PSL_CT_calcstringwidth
  345. { /PSL_width_tmp PSL_m array def
  346. 0 1 PSL_m1
  347. { /i exch def
  348. PSL_fnt_tmp i get cvx exec
  349. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  350. } for
  351. } def
  352. /PSL_CT_calclinedist
  353. { /PSL_newx PSL_x 0 get def
  354. /PSL_newy PSL_y 0 get def
  355. /dist 0.0 def
  356. /PSL_dist PSL_n array def
  357. PSL_dist 0 0.0 put
  358. 1 1 PSL_n1
  359. { /i exch def
  360. /PSL_oldx PSL_newx def
  361. /PSL_oldy PSL_newy def
  362. /PSL_newx PSL_x i get def
  363. /PSL_newy PSL_y i get def
  364. /dx PSL_newx PSL_oldx sub def
  365. /dy PSL_newy PSL_oldy sub def
  366. /dist dist dx dx mul dy dy mul add sqrt add def
  367. PSL_dist i dist put
  368. } for
  369. } def
  370. /PSL_CT_excludelabels
  371. { /k 0 def
  372. /PSL_width PSL_m array def
  373. /PSL_angle PSL_m array def
  374. /PSL_node PSL_m array def
  375. /PSL_str PSL_m array def
  376. /PSL_fnt PSL_m array def
  377. /lastdist PSL_dist PSL_n1 get def
  378. 0 1 PSL_m1
  379. { /i exch def
  380. /dist PSL_dist PSL_node_tmp i get get def
  381. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  382. /L_dist dist halfwidth sub def
  383. /R_dist dist halfwidth add def
  384. L_dist 0 gt R_dist lastdist lt and
  385. {
  386. PSL_width k PSL_width_tmp i get put
  387. PSL_node k PSL_node_tmp i get put
  388. PSL_angle k PSL_angle_tmp i get put
  389. PSL_str k PSL_str_tmp i get put
  390. PSL_fnt k PSL_fnt_tmp i get put
  391. /k k 1 add def
  392. } if
  393. } for
  394. /PSL_m k def
  395. /PSL_m1 PSL_m 1 sub def
  396. } def
  397. /PSL_CT_addcutpoints
  398. { /k 0 def
  399. /PSL_nc PSL_m 2 mul 1 add def
  400. /PSL_cuts PSL_nc array def
  401. /PSL_nc1 PSL_nc 1 sub def
  402. 0 1 PSL_m1
  403. { /i exch def
  404. /dist PSL_dist PSL_node i get get def
  405. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  406. PSL_cuts k dist halfwidth sub put
  407. /k k 1 add def
  408. PSL_cuts k dist halfwidth add put
  409. /k k 1 add def
  410. } for
  411. PSL_cuts k 100000.0 put
  412. /PSL_nn PSL_n PSL_m 2 mul add def
  413. /PSL_xx PSL_nn array def
  414. /PSL_yy PSL_nn array def
  415. /PSL_kind PSL_nn array def
  416. /j 0 def
  417. /k 0 def
  418. /dist 0.0 def
  419. 0 1 PSL_n1
  420. { /i exch def
  421. /last_dist dist def
  422. /dist PSL_dist i get def
  423. k 1 PSL_nc1
  424. { /kk exch def
  425. /this_cut PSL_cuts kk get def
  426. dist this_cut gt
  427. { /ds dist last_dist sub def
  428. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  429. /i1 i 0 eq {0} {i 1 sub} ifelse def
  430. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  431. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  432. PSL_kind j 1 put
  433. /j j 1 add def
  434. /k k 1 add def
  435. } if
  436. } for
  437. dist PSL_cuts k get le
  438. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  439. PSL_kind j 0 put
  440. /j j 1 add def
  441. } if
  442. } for
  443. } def
  444. /PSL_CT_reversepath
  445. {PSL_xp j get PSL_xp 0 get lt
  446. {0 1 j 2 idiv
  447. { /left exch def
  448. /right j left sub def
  449. /tmp PSL_xp left get def
  450. PSL_xp left PSL_xp right get put
  451. PSL_xp right tmp put
  452. /tmp PSL_yp left get def
  453. PSL_yp left PSL_yp right get put
  454. PSL_yp right tmp put
  455. } for
  456. } if
  457. } def
  458. /PSL_CT_placelabel
  459. {
  460. /PSL_just PSL_label_justify k get def
  461. /PSL_height PSL_heights k get def
  462. /psl_label PSL_str k get def
  463. /psl_depth psl_label sd def
  464. PSL_usebox
  465. {PSL_CT_clippath
  466. PSL_fillbox
  467. {V PSL_setboxrgb fill U} if
  468. PSL_drawbox
  469. {V PSL_setboxpen S U} if N
  470. } if
  471. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  472. } def
  473. /PSL_CT_clippath
  474. {
  475. /H PSL_height 2 div PSL_gap_y add def
  476. /xoff j 1 add array def
  477. /yoff j 1 add array def
  478. /angle 0 def
  479. 0 1 j {
  480. /ii exch def
  481. /x PSL_xp ii get def
  482. /y PSL_yp ii get def
  483. ii 0 eq {
  484. /x1 PSL_xp 1 get def
  485. /y1 PSL_yp 1 get def
  486. /dx x1 x sub def
  487. /dy y1 y sub def
  488. }
  489. { /i1 ii 1 sub def
  490. /x1 PSL_xp i1 get def
  491. /y1 PSL_yp i1 get def
  492. /dx x x1 sub def
  493. /dy y y1 sub def
  494. } ifelse
  495. dx 0.0 eq dy 0.0 eq and not
  496. { /angle dy dx atan 90 add def} if
  497. /sina angle sin def
  498. /cosa angle cos def
  499. xoff ii H cosa mul put
  500. yoff ii H sina mul put
  501. } for
  502. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  503. 1 1 j {
  504. /ii exch def
  505. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  506. } for
  507. j -1 0 {
  508. /ii exch def
  509. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  510. } for P
  511. } def
  512. /PSL_CT_drawline
  513. {
  514. /str 20 string def
  515. PSL_strokeline
  516. {PSL_CT_placeline S} if
  517. /PSL_seg PSL_seg 1 add def
  518. /n 1 def
  519. } def
  520. /PSL_CT_placeline
  521. {PSL_xp 0 get PSL_yp 0 get M
  522. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  523. } def
  524. /PSL_draw_path_lines
  525. {
  526. /PSL_n_paths1 PSL_n_paths 1 sub def
  527. V
  528. /psl_start 0 def
  529. 0 1 PSL_n_paths1
  530. { /psl_k exch def
  531. /PSL_n PSL_path_n psl_k get def
  532. /PSL_n1 PSL_n 1 sub def
  533. PSL_path_pen psl_k get cvx exec
  534. N
  535. PSL_path_x psl_start get PSL_path_y psl_start get M
  536. 1 1 PSL_n1
  537. { /psl_i exch def
  538. /psl_kk psl_i psl_start add def
  539. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  540. } for
  541. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  542. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  543. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  544. S
  545. /psl_start psl_start PSL_n add def
  546. } for
  547. U
  548. } def
  549. /PSL_straight_path_labels
  550. {
  551. /psl_bits exch def
  552. /PSL_placetext psl_bits 2 and 2 eq def
  553. /PSL_rounded psl_bits 32 and 32 eq def
  554. /PSL_fillbox psl_bits 128 and 128 eq def
  555. /PSL_drawbox psl_bits 256 and 256 eq def
  556. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  557. /PSL_usebox PSL_fillbox PSL_drawbox or def
  558. 0 1 PSL_n_labels_minus_1
  559. { /psl_k exch def
  560. PSL_ST_prepare_text
  561. PSL_usebox
  562. { PSL_rounded
  563. {PSL_ST_textbox_round}
  564. {PSL_ST_textbox_rect}
  565. ifelse
  566. PSL_fillbox {V PSL_setboxrgb fill U} if
  567. PSL_drawbox {V PSL_setboxpen S U} if
  568. N
  569. } if
  570. PSL_placetext {PSL_ST_place_label} if
  571. } for
  572. } def
  573. /PSL_straight_path_clip
  574. {
  575. /psl_bits exch def
  576. /PSL_rounded psl_bits 32 and 32 eq def
  577. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  578. N clipsave clippath
  579. 0 1 PSL_n_labels_minus_1
  580. { /psl_k exch def
  581. PSL_ST_prepare_text
  582. PSL_rounded
  583. {PSL_ST_textbox_round}
  584. {PSL_ST_textbox_rect}
  585. ifelse
  586. } for
  587. PSL_eoclip N
  588. } def
  589. /PSL_ST_prepare_text
  590. {
  591. /psl_xp PSL_txt_x psl_k get def
  592. /psl_yp PSL_txt_y psl_k get def
  593. /psl_label PSL_label_str psl_k get def
  594. PSL_label_font psl_k get cvx exec
  595. /PSL_height PSL_heights psl_k get def
  596. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  597. /PSL_just PSL_label_justify psl_k get def
  598. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  599. /PSL_justy PSL_just 4 idiv 2 div neg def
  600. /psl_SW psl_label stringwidth pop def
  601. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  602. /psl_x0 psl_SW PSL_justx mul def
  603. /psl_y0 PSL_justy PSL_height mul def
  604. /psl_angle PSL_label_angle psl_k get def
  605. } def
  606. /PSL_ST_textbox_rect
  607. {
  608. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  609. PSL_gap_x neg PSL_gap_y neg M
  610. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  611. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  612. } def
  613. /PSL_ST_textbox_round
  614. {
  615. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  616. /psl_xd PSL_gap_x psl_BoxR sub def
  617. /psl_yd PSL_gap_y psl_BoxR sub def
  618. /psl_xL PSL_gap_x neg def
  619. /psl_yB PSL_gap_y neg def
  620. /psl_yT psl_boxH psl_yB add def
  621. /psl_H2 PSL_height psl_yd 2 mul add def
  622. /psl_W2 psl_SW psl_xd 2 mul add def
  623. /psl_xR psl_xL psl_boxW add def
  624. /psl_x0 psl_SW PSL_justx mul def
  625. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  626. psl_xL psl_yd M
  627. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  628. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  629. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  630. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  631. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  632. } def
  633. /PSL_ST_place_label
  634. {
  635. V psl_xp psl_yp T psl_angle R
  636. psl_SW PSL_justx mul psl_y0 M
  637. psl_label dup sd neg 0 exch G show
  638. U
  639. } def
  640. /PSL_nclip 0 def
  641. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  642. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  643. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  644. %%EndProlog
  645. %%BeginSetup
  646. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  647. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  648. %%EndSetup
  649. %%Page: 1 1
  650. %%BeginPageSetup
  651. V 0.06 0.06 scale
  652. %%EndPageSetup
  653. /PSL_page_xsize 10200 def
  654. /PSL_page_ysize 13200 def
  655. /PSL_completion {} def
  656. /PSL_movie_completion {} def
  657. %PSL_End_Header
  658. gsave
  659. 0 A
  660. FQ
  661. O0
  662. -3900 PSL_xorig sub PSL_page_xsize 2 div add 1200 TM
  663. % PostScript produced by:
  664. %@GMT: gmt psxy -R-3/3/0/4 -JX6.5i/4i -P -Baf -BWSne @stepdata.txt -Sc0.15c -Gblue -K -Xc
  665. %@PROJ: xy -3.00000000 3.00000000 0.00000000 4.00000000 -3.000 3.000 0.000 4.000 +xy
  666. %GMTBoundingBox: -234 72 468 288
  667. %%BeginObject PSL_Layer_1
  668. 0 setlinecap
  669. 0 setlinejoin
  670. 3.32551 setmiterlimit
  671. 25 W
  672. 2 setlinecap
  673. N 0 4800 M 0 -4800 D S
  674. /PSL_A0_y 83 def
  675. /PSL_A1_y 0 def
  676. 8 W
  677. N 0 0 M -83 0 D S
  678. N 0 1200 M -83 0 D S
  679. N 0 2400 M -83 0 D S
  680. N 0 3600 M -83 0 D S
  681. N 0 4800 M -83 0 D S
  682. /PSL_AH0 0
  683. /MM {neg exch M} def
  684. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  685. 200 F0
  686. (0) sw mx
  687. (1) sw mx
  688. (2) sw mx
  689. (3) sw mx
  690. (4) sw mx
  691. def
  692. /PSL_A0_y PSL_A0_y 83 add def
  693. 0 PSL_A0_y MM
  694. (0) mr Z
  695. 1200 PSL_A0_y MM
  696. (1) mr Z
  697. 2400 PSL_A0_y MM
  698. (2) mr Z
  699. 3600 PSL_A0_y MM
  700. (3) mr Z
  701. 4800 PSL_A0_y MM
  702. (4) mr Z
  703. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  704. N 0 240 M -42 0 D S
  705. N 0 480 M -42 0 D S
  706. N 0 720 M -42 0 D S
  707. N 0 960 M -42 0 D S
  708. N 0 1440 M -42 0 D S
  709. N 0 1680 M -42 0 D S
  710. N 0 1920 M -42 0 D S
  711. N 0 2160 M -42 0 D S
  712. N 0 2640 M -42 0 D S
  713. N 0 2880 M -42 0 D S
  714. N 0 3120 M -42 0 D S
  715. N 0 3360 M -42 0 D S
  716. N 0 3840 M -42 0 D S
  717. N 0 4080 M -42 0 D S
  718. N 0 4320 M -42 0 D S
  719. N 0 4560 M -42 0 D S
  720. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  721. 7800 0 T
  722. 25 W
  723. N 0 4800 M 0 -4800 D S
  724. /PSL_A0_y 83 def
  725. /PSL_A1_y 0 def
  726. 8 W
  727. N 0 0 M 83 0 D S
  728. N 0 1200 M 83 0 D S
  729. N 0 2400 M 83 0 D S
  730. N 0 3600 M 83 0 D S
  731. N 0 4800 M 83 0 D S
  732. N 0 240 M 42 0 D S
  733. N 0 480 M 42 0 D S
  734. N 0 720 M 42 0 D S
  735. N 0 960 M 42 0 D S
  736. N 0 1440 M 42 0 D S
  737. N 0 1680 M 42 0 D S
  738. N 0 1920 M 42 0 D S
  739. N 0 2160 M 42 0 D S
  740. N 0 2640 M 42 0 D S
  741. N 0 2880 M 42 0 D S
  742. N 0 3120 M 42 0 D S
  743. N 0 3360 M 42 0 D S
  744. N 0 3840 M 42 0 D S
  745. N 0 4080 M 42 0 D S
  746. N 0 4320 M 42 0 D S
  747. N 0 4560 M 42 0 D S
  748. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  749. -7800 0 T
  750. 25 W
  751. N 0 0 M 7800 0 D S
  752. /PSL_A0_y 83 def
  753. /PSL_A1_y 0 def
  754. 8 W
  755. N 0 0 M 0 -83 D S
  756. N 1300 0 M 0 -83 D S
  757. N 2600 0 M 0 -83 D S
  758. N 3900 0 M 0 -83 D S
  759. N 5200 0 M 0 -83 D S
  760. N 6500 0 M 0 -83 D S
  761. N 7800 0 M 0 -83 D S
  762. /PSL_AH0 0
  763. /MM {neg M} def
  764. (”3) sh mx
  765. (”2) sh mx
  766. (”1) sh mx
  767. (0) sh mx
  768. (1) sh mx
  769. (2) sh mx
  770. (3) sh mx
  771. def
  772. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  773. 0 PSL_A0_y MM
  774. (”3) bc Z
  775. 1300 PSL_A0_y MM
  776. (”2) bc Z
  777. 2600 PSL_A0_y MM
  778. (”1) bc Z
  779. 3900 PSL_A0_y MM
  780. (0) bc Z
  781. 5200 PSL_A0_y MM
  782. (1) bc Z
  783. 6500 PSL_A0_y MM
  784. (2) bc Z
  785. 7800 PSL_A0_y MM
  786. (3) bc Z
  787. N 260 0 M 0 -42 D S
  788. N 520 0 M 0 -42 D S
  789. N 780 0 M 0 -42 D S
  790. N 1040 0 M 0 -42 D S
  791. N 1560 0 M 0 -42 D S
  792. N 1820 0 M 0 -42 D S
  793. N 2080 0 M 0 -42 D S
  794. N 2340 0 M 0 -42 D S
  795. N 2860 0 M 0 -42 D S
  796. N 3120 0 M 0 -42 D S
  797. N 3380 0 M 0 -42 D S
  798. N 3640 0 M 0 -42 D S
  799. N 4160 0 M 0 -42 D S
  800. N 4420 0 M 0 -42 D S
  801. N 4680 0 M 0 -42 D S
  802. N 4940 0 M 0 -42 D S
  803. N 5460 0 M 0 -42 D S
  804. N 5720 0 M 0 -42 D S
  805. N 5980 0 M 0 -42 D S
  806. N 6240 0 M 0 -42 D S
  807. N 6760 0 M 0 -42 D S
  808. N 7020 0 M 0 -42 D S
  809. N 7280 0 M 0 -42 D S
  810. N 7540 0 M 0 -42 D S
  811. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  812. 0 4800 T
  813. 25 W
  814. N 0 0 M 7800 0 D S
  815. /PSL_A0_y 83 def
  816. /PSL_A1_y 0 def
  817. 8 W
  818. N 0 0 M 0 83 D S
  819. N 1300 0 M 0 83 D S
  820. N 2600 0 M 0 83 D S
  821. N 3900 0 M 0 83 D S
  822. N 5200 0 M 0 83 D S
  823. N 6500 0 M 0 83 D S
  824. N 7800 0 M 0 83 D S
  825. N 260 0 M 0 42 D S
  826. N 520 0 M 0 42 D S
  827. N 780 0 M 0 42 D S
  828. N 1040 0 M 0 42 D S
  829. N 1560 0 M 0 42 D S
  830. N 1820 0 M 0 42 D S
  831. N 2080 0 M 0 42 D S
  832. N 2340 0 M 0 42 D S
  833. N 2860 0 M 0 42 D S
  834. N 3120 0 M 0 42 D S
  835. N 3380 0 M 0 42 D S
  836. N 3640 0 M 0 42 D S
  837. N 4160 0 M 0 42 D S
  838. N 4420 0 M 0 42 D S
  839. N 4680 0 M 0 42 D S
  840. N 4940 0 M 0 42 D S
  841. N 5460 0 M 0 42 D S
  842. N 5720 0 M 0 42 D S
  843. N 5980 0 M 0 42 D S
  844. N 6240 0 M 0 42 D S
  845. N 6760 0 M 0 42 D S
  846. N 7020 0 M 0 42 D S
  847. N 7280 0 M 0 42 D S
  848. N 7540 0 M 0 42 D S
  849. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  850. 0 -4800 T
  851. 0 setlinecap
  852. clipsave
  853. 0 0 M
  854. 7800 0 D
  855. 0 4800 D
  856. -7800 0 D
  857. P
  858. PSL_clip N
  859. 4 W
  860. V
  861. {0 0 1 C} FS
  862. 35 0 821 Sc
  863. 35 130 854 Sc
  864. 35 260 1085 Sc
  865. 35 390 929 Sc
  866. 35 520 936 Sc
  867. 35 650 971 Sc
  868. 35 780 1162 Sc
  869. 35 910 814 Sc
  870. 35 1040 827 Sc
  871. 35 1170 806 Sc
  872. 35 1300 884 Sc
  873. 35 1430 975 Sc
  874. 35 1560 960 Sc
  875. 35 1690 1031 Sc
  876. 35 1820 812 Sc
  877. 35 1950 1123 Sc
  878. 35 2080 884 Sc
  879. 35 2210 1129 Sc
  880. 35 2340 1041 Sc
  881. 35 2470 1178 Sc
  882. 35 2600 1184 Sc
  883. 35 2730 1086 Sc
  884. 35 2860 1139 Sc
  885. 35 2990 1218 Sc
  886. 35 3120 1053 Sc
  887. 35 3250 1150 Sc
  888. 35 3380 1040 Sc
  889. 35 3510 930 Sc
  890. 35 3640 1292 Sc
  891. 35 3770 1227 Sc
  892. 35 3900 1179 Sc
  893. 35 4030 1021 Sc
  894. 35 4160 1046 Sc
  895. 35 4290 1126 Sc
  896. 35 4420 1276 Sc
  897. 35 4550 2622 Sc
  898. 35 4680 3830 Sc
  899. 35 4810 3649 Sc
  900. 35 4940 3654 Sc
  901. 35 5070 3639 Sc
  902. 35 5200 3809 Sc
  903. 35 5330 3702 Sc
  904. 35 5460 3594 Sc
  905. 35 5590 3830 Sc
  906. 35 5720 3907 Sc
  907. 35 5850 3781 Sc
  908. 35 5980 3587 Sc
  909. 35 6110 3841 Sc
  910. 35 6240 3974 Sc
  911. 35 6370 3914 Sc
  912. 35 6500 3971 Sc
  913. 35 6630 4029 Sc
  914. 35 6760 3813 Sc
  915. 35 6890 4001 Sc
  916. 35 7020 3933 Sc
  917. 35 7150 3754 Sc
  918. 35 7280 4128 Sc
  919. 35 7410 4001 Sc
  920. 35 7540 4100 Sc
  921. 35 7670 4083 Sc
  922. 35 7800 3941 Sc
  923. U
  924. PSL_cliprestore
  925. %%EndObject
  926. 0 A
  927. FQ
  928. O0
  929. 0 0 TM
  930. % PostScript produced by:
  931. %@GMT: gmt psxy -R-3/3/0/4 -JX6.5i/4i -O -K stepfit_lsq.txt -W2p
  932. %@PROJ: xy -3.00000000 3.00000000 0.00000000 4.00000000 -3.000 3.000 0.000 4.000 +xy
  933. %%BeginObject PSL_Layer_2
  934. 0 setlinecap
  935. 0 setlinejoin
  936. 3.32551 setmiterlimit
  937. 33 W
  938. clipsave
  939. 0 0 M
  940. 7800 0 D
  941. 0 4800 D
  942. -7800 0 D
  943. P
  944. PSL_clip N
  945. 0 852 M
  946. 4420 368 D
  947. 260 2512 D
  948. 3120 259 D
  949. S
  950. PSL_cliprestore
  951. %%EndObject
  952. 0 A
  953. FQ
  954. O0
  955. 0 0 TM
  956. % PostScript produced by:
  957. %@GMT: gmt psxy -R-3/3/0/4 -JX6.5i/4i -O -K stepfit_svd.txt -Sc2p -Gred
  958. %@PROJ: xy -3.00000000 3.00000000 0.00000000 4.00000000 -3.000 3.000 0.000 4.000 +xy
  959. %%BeginObject PSL_Layer_3
  960. 0 setlinecap
  961. 0 setlinejoin
  962. 3.32551 setmiterlimit
  963. clipsave
  964. 0 0 M
  965. 7800 0 D
  966. 0 4800 D
  967. -7800 0 D
  968. P
  969. PSL_clip N
  970. 4 W
  971. V
  972. {1 0 0 C} FS
  973. 17 0 852 Sc
  974. 17 130 863 Sc
  975. 17 260 874 Sc
  976. 17 390 885 Sc
  977. 17 520 895 Sc
  978. 17 650 906 Sc
  979. 17 780 917 Sc
  980. 17 910 928 Sc
  981. 17 1040 939 Sc
  982. 17 1170 950 Sc
  983. 17 1300 960 Sc
  984. 17 1430 971 Sc
  985. 17 1560 982 Sc
  986. 17 1690 993 Sc
  987. 17 1820 1004 Sc
  988. 17 1950 1014 Sc
  989. 17 2080 1025 Sc
  990. 17 2210 1036 Sc
  991. 17 2340 1047 Sc
  992. 17 2470 1058 Sc
  993. 17 2600 1068 Sc
  994. 17 2730 1079 Sc
  995. 17 2860 1090 Sc
  996. 17 2990 1101 Sc
  997. 17 3120 1112 Sc
  998. 17 3250 1122 Sc
  999. 17 3380 1133 Sc
  1000. 17 3510 1144 Sc
  1001. 17 3640 1155 Sc
  1002. 17 3770 1166 Sc
  1003. 17 3900 1177 Sc
  1004. 17 4030 1187 Sc
  1005. 17 4160 1198 Sc
  1006. 17 4290 1209 Sc
  1007. 17 4420 1220 Sc
  1008. 17 4550 2476 Sc
  1009. 17 4680 3732 Sc
  1010. 17 4810 3743 Sc
  1011. 17 4940 3753 Sc
  1012. 17 5070 3764 Sc
  1013. 17 5200 3775 Sc
  1014. 17 5330 3786 Sc
  1015. 17 5460 3797 Sc
  1016. 17 5590 3807 Sc
  1017. 17 5720 3818 Sc
  1018. 17 5850 3829 Sc
  1019. 17 5980 3840 Sc
  1020. 17 6110 3851 Sc
  1021. 17 6240 3861 Sc
  1022. 17 6370 3872 Sc
  1023. 17 6500 3883 Sc
  1024. 17 6630 3894 Sc
  1025. 17 6760 3905 Sc
  1026. 17 6890 3915 Sc
  1027. 17 7020 3926 Sc
  1028. 17 7150 3937 Sc
  1029. 17 7280 3948 Sc
  1030. 17 7410 3959 Sc
  1031. 17 7540 3970 Sc
  1032. 17 7670 3980 Sc
  1033. 17 7800 3991 Sc
  1034. U
  1035. PSL_cliprestore
  1036. %%EndObject
  1037. 0 A
  1038. FQ
  1039. O0
  1040. 0 0 TM
  1041. % PostScript produced by:
  1042. %@GMT: gmt pstext -R-3/3/0/4 -JX6.5i/4i -O -K -F+f12p+jRB+cRB -Dj0.2i
  1043. %@PROJ: xy -3.00000000 3.00000000 0.00000000 4.00000000 -3.000 3.000 0.000 4.000 +xy
  1044. %%BeginObject PSL_Layer_4
  1045. 0 setlinecap
  1046. 0 setlinejoin
  1047. 3.32551 setmiterlimit
  1048. clipsave
  1049. 0 0 M
  1050. 7800 0 D
  1051. 0 4800 D
  1052. -7800 0 D
  1053. P
  1054. PSL_clip N
  1055. 7560 240 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1056. 200 F0
  1057. V MU 0 0 M (Fit y\(x\) = a + b*x + c*H\(x-0.5\) + ) FP 200 F12 (e) FP 200 F0 (\(x\)) FP pathbbox N pop exch pop add U neg 0 G
  1058. (Fit y\(x\) = a + b*x + c*H\(x-0.5\) + ) Z
  1059. 200 F12 (e) Z
  1060. 200 F0 (\(x\)) Z
  1061. PSL_cliprestore
  1062. %%EndObject
  1063. 0 A
  1064. FQ
  1065. O0
  1066. 0 0 TM
  1067. % PostScript produced by:
  1068. %@GMT: gmt pslegend -R-3/3/0/4 -JX6.5i/4i -O -K -DjTL+w1.75i+jTL+o0.1i/0.1i -F+p
  1069. %@PROJ: xy -3.00000000 3.00000000 0.00000000 4.00000000 -3.000 3.000 0.000 4.000 +xy
  1070. %%BeginObject PSL_Layer_5
  1071. 0 setlinecap
  1072. 0 setlinejoin
  1073. 3.32551 setmiterlimit
  1074. 120 3887 T
  1075. 25 W
  1076. O1
  1077. 793 2100 1050 397 Sr
  1078. 0 A
  1079. FQ
  1080. O0
  1081. 0 0 TM
  1082. % PostScript produced by:
  1083. %@GMT: gmt psxy -R0/6.5/0/4 -Jx1i -O -K -N -S @GMTAPI@-000001 --PROJ_LENGTH_UNIT=inch --GMT_HISTORY=false
  1084. %@PROJ: xy 0.00000000 6.50000000 0.00000000 4.00000000 0.000 6.500 0.000 4.000 +xy
  1085. %%BeginObject PSL_Layer_6
  1086. 0 setlinecap
  1087. 0 setlinejoin
  1088. 3.32551 setmiterlimit
  1089. 4 W
  1090. V
  1091. O1
  1092. 33 W
  1093. 90 187 617 S-
  1094. {1 0 0 C} FS
  1095. O0
  1096. 4 W
  1097. 17 187 397 Sc
  1098. {0 0 1 C} FS
  1099. 35 187 177 Sc
  1100. U
  1101. %%EndObject
  1102. 0 A
  1103. FQ
  1104. O0
  1105. 0 0 TM
  1106. % PostScript produced by:
  1107. %@GMT: gmt pstext -R0/6.5/0/4 -Jx1i -O -K -N -F+f+j @GMTAPI@-000002 --GMT_HISTORY=false
  1108. %@PROJ: xy 0.00000000 6.50000000 0.00000000 4.00000000 0.000 6.500 0.000 4.000 +xy
  1109. %%BeginObject PSL_Layer_7
  1110. 0 setlinecap
  1111. 0 setlinejoin
  1112. 3.32551 setmiterlimit
  1113. 427 547 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1114. 200 F0
  1115. (LSQFIT solution) bl Z
  1116. 427 327 M (SVDFIT solution) bl Z
  1117. 427 107 M (Input data) bl Z
  1118. %%EndObject
  1119. -120 -3887 T
  1120. %%EndObject
  1121. 0 A
  1122. FQ
  1123. O0
  1124. 0 6000 TM
  1125. % PostScript produced by:
  1126. %@GMT: gmt psxy -R0/2/-3/4 -JX6.5i/4i -O -Baf @sinusoiddata.txt -Sc0.15c -Gblue -K -Y5i
  1127. %@PROJ: xy 0.00000000 2.00000000 -3.00000000 4.00000000 0.000 2.000 -3.000 4.000 +xy
  1128. %%BeginObject PSL_Layer_8
  1129. 0 setlinecap
  1130. 0 setlinejoin
  1131. 3.32551 setmiterlimit
  1132. 25 W
  1133. 2 setlinecap
  1134. N 0 4800 M 0 -4800 D S
  1135. /PSL_A0_y 83 def
  1136. /PSL_A1_y 0 def
  1137. 8 W
  1138. N 0 686 M -83 0 D S
  1139. N 0 2057 M -83 0 D S
  1140. N 0 3429 M -83 0 D S
  1141. N 0 4800 M -83 0 D S
  1142. /PSL_AH0 0
  1143. /MM {neg exch M} def
  1144. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1145. 200 F0
  1146. (”2) sw mx
  1147. (0) sw mx
  1148. (2) sw mx
  1149. (4) sw mx
  1150. def
  1151. /PSL_A0_y PSL_A0_y 83 add def
  1152. 686 PSL_A0_y MM
  1153. (”2) mr Z
  1154. 2057 PSL_A0_y MM
  1155. (0) mr Z
  1156. 3429 PSL_A0_y MM
  1157. (2) mr Z
  1158. 4800 PSL_A0_y MM
  1159. (4) mr Z
  1160. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1161. N 0 0 M -42 0 D S
  1162. N 0 1371 M -42 0 D S
  1163. N 0 2743 M -42 0 D S
  1164. N 0 4114 M -42 0 D S
  1165. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1166. 7800 0 T
  1167. 25 W
  1168. N 0 4800 M 0 -4800 D S
  1169. /PSL_A0_y 83 def
  1170. /PSL_A1_y 0 def
  1171. 8 W
  1172. N 0 686 M 83 0 D S
  1173. N 0 2057 M 83 0 D S
  1174. N 0 3429 M 83 0 D S
  1175. N 0 4800 M 83 0 D S
  1176. /PSL_AH0 0
  1177. /MM {exch M} def
  1178. (”2) sw mx
  1179. (0) sw mx
  1180. (2) sw mx
  1181. (4) sw mx
  1182. def
  1183. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1184. 686 PSL_A0_y MM
  1185. (”2) mr Z
  1186. 2057 PSL_A0_y MM
  1187. (0) mr Z
  1188. 3429 PSL_A0_y MM
  1189. (2) mr Z
  1190. 4800 PSL_A0_y MM
  1191. (4) mr Z
  1192. N 0 0 M 42 0 D S
  1193. N 0 1371 M 42 0 D S
  1194. N 0 2743 M 42 0 D S
  1195. N 0 4114 M 42 0 D S
  1196. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1197. -7800 0 T
  1198. 25 W
  1199. N 0 0 M 7800 0 D S
  1200. /PSL_A0_y 83 def
  1201. /PSL_A1_y 0 def
  1202. 8 W
  1203. N 0 0 M 0 -83 D S
  1204. N 1950 0 M 0 -83 D S
  1205. N 3900 0 M 0 -83 D S
  1206. N 5850 0 M 0 -83 D S
  1207. N 7800 0 M 0 -83 D S
  1208. /PSL_AH0 0
  1209. /MM {neg M} def
  1210. (0.0) sh mx
  1211. (0.5) sh mx
  1212. (1.0) sh mx
  1213. (1.5) sh mx
  1214. (2.0) sh mx
  1215. def
  1216. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1217. 0 PSL_A0_y MM
  1218. (0.0) bc Z
  1219. 1950 PSL_A0_y MM
  1220. (0.5) bc Z
  1221. 3900 PSL_A0_y MM
  1222. (1.0) bc Z
  1223. 5850 PSL_A0_y MM
  1224. (1.5) bc Z
  1225. 7800 PSL_A0_y MM
  1226. (2.0) bc Z
  1227. N 390 0 M 0 -42 D S
  1228. N 780 0 M 0 -42 D S
  1229. N 1170 0 M 0 -42 D S
  1230. N 1560 0 M 0 -42 D S
  1231. N 2340 0 M 0 -42 D S
  1232. N 2730 0 M 0 -42 D S
  1233. N 3120 0 M 0 -42 D S
  1234. N 3510 0 M 0 -42 D S
  1235. N 4290 0 M 0 -42 D S
  1236. N 4680 0 M 0 -42 D S
  1237. N 5070 0 M 0 -42 D S
  1238. N 5460 0 M 0 -42 D S
  1239. N 6240 0 M 0 -42 D S
  1240. N 6630 0 M 0 -42 D S
  1241. N 7020 0 M 0 -42 D S
  1242. N 7410 0 M 0 -42 D S
  1243. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1244. 0 4800 T
  1245. 25 W
  1246. N 0 0 M 7800 0 D S
  1247. /PSL_A0_y 83 def
  1248. /PSL_A1_y 0 def
  1249. 8 W
  1250. N 0 0 M 0 83 D S
  1251. N 1950 0 M 0 83 D S
  1252. N 3900 0 M 0 83 D S
  1253. N 5850 0 M 0 83 D S
  1254. N 7800 0 M 0 83 D S
  1255. /PSL_AH0 0
  1256. /MM {M} def
  1257. (0.0) sh mx
  1258. (0.5) sh mx
  1259. (1.0) sh mx
  1260. (1.5) sh mx
  1261. (2.0) sh mx
  1262. def
  1263. /PSL_A0_y PSL_A0_y 83 add def
  1264. 0 PSL_A0_y MM
  1265. (0.0) bc Z
  1266. 1950 PSL_A0_y MM
  1267. (0.5) bc Z
  1268. 3900 PSL_A0_y MM
  1269. (1.0) bc Z
  1270. 5850 PSL_A0_y MM
  1271. (1.5) bc Z
  1272. 7800 PSL_A0_y MM
  1273. (2.0) bc Z
  1274. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1275. N 390 0 M 0 42 D S
  1276. N 780 0 M 0 42 D S
  1277. N 1170 0 M 0 42 D S
  1278. N 1560 0 M 0 42 D S
  1279. N 2340 0 M 0 42 D S
  1280. N 2730 0 M 0 42 D S
  1281. N 3120 0 M 0 42 D S
  1282. N 3510 0 M 0 42 D S
  1283. N 4290 0 M 0 42 D S
  1284. N 4680 0 M 0 42 D S
  1285. N 5070 0 M 0 42 D S
  1286. N 5460 0 M 0 42 D S
  1287. N 6240 0 M 0 42 D S
  1288. N 6630 0 M 0 42 D S
  1289. N 7020 0 M 0 42 D S
  1290. N 7410 0 M 0 42 D S
  1291. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1292. 0 -4800 T
  1293. 0 setlinecap
  1294. clipsave
  1295. 0 0 M
  1296. 7800 0 D
  1297. 0 4800 D
  1298. -7800 0 D
  1299. P
  1300. PSL_clip N
  1301. 4 W
  1302. V
  1303. {0 0 1 C} FS
  1304. 35 0 2060 Sc
  1305. 35 39 2379 Sc
  1306. 35 78 2781 Sc
  1307. 35 117 2661 Sc
  1308. 35 156 3242 Sc
  1309. 35 195 3458 Sc
  1310. 35 234 3518 Sc
  1311. 35 273 3919 Sc
  1312. 35 312 3980 Sc
  1313. 35 351 4264 Sc
  1314. 35 390 4159 Sc
  1315. 35 429 4172 Sc
  1316. 35 468 4033 Sc
  1317. 35 507 3920 Sc
  1318. 35 546 3776 Sc
  1319. 35 585 3560 Sc
  1320. 35 624 3347 Sc
  1321. 35 663 3124 Sc
  1322. 35 702 2916 Sc
  1323. 35 741 2676 Sc
  1324. 35 780 2443 Sc
  1325. 35 819 2302 Sc
  1326. 35 858 2022 Sc
  1327. 35 897 1760 Sc
  1328. 35 936 1477 Sc
  1329. 35 975 1657 Sc
  1330. 35 1014 1368 Sc
  1331. 35 1053 1372 Sc
  1332. 35 1092 1488 Sc
  1333. 35 1131 1423 Sc
  1334. 35 1170 1512 Sc
  1335. 35 1209 1753 Sc
  1336. 35 1248 1840 Sc
  1337. 35 1287 1858 Sc
  1338. 35 1326 2425 Sc
  1339. 35 1365 2668 Sc
  1340. 35 1404 2756 Sc
  1341. 35 1443 3008 Sc
  1342. 35 1482 3240 Sc
  1343. 35 1521 3458 Sc
  1344. 35 1560 3791 Sc
  1345. 35 1599 4101 Sc
  1346. 35 1638 4096 Sc
  1347. 35 1677 4301 Sc
  1348. 35 1716 4157 Sc
  1349. 35 1755 4037 Sc
  1350. 35 1794 3923 Sc
  1351. 35 1833 3734 Sc
  1352. 35 1872 3892 Sc
  1353. 35 1911 3515 Sc
  1354. 35 1950 3541 Sc
  1355. 35 1989 2637 Sc
  1356. 35 2028 2853 Sc
  1357. 35 2067 2626 Sc
  1358. 35 2106 2171 Sc
  1359. 35 2145 2046 Sc
  1360. 35 2184 2010 Sc
  1361. 35 2223 1741 Sc
  1362. 35 2262 1267 Sc
  1363. 35 2301 1459 Sc
  1364. 35 2340 1465 Sc
  1365. 35 2379 1537 Sc
  1366. 35 2418 1378 Sc
  1367. 35 2457 1533 Sc
  1368. 35 2496 1504 Sc
  1369. 35 2535 1846 Sc
  1370. 35 2574 2019 Sc
  1371. 35 2613 2369 Sc
  1372. 35 2652 2704 Sc
  1373. 35 2691 2571 Sc
  1374. 35 2730 2770 Sc
  1375. 35 2769 3433 Sc
  1376. 35 2808 3465 Sc
  1377. 35 2847 3564 Sc
  1378. 35 2886 3876 Sc
  1379. 35 2925 4073 Sc
  1380. 35 2964 4205 Sc
  1381. 35 3003 4025 Sc
  1382. 35 3042 4232 Sc
  1383. 35 3081 3947 Sc
  1384. 35 3120 4192 Sc
  1385. 35 3159 3771 Sc
  1386. 35 3198 3546 Sc
  1387. 35 3237 3366 Sc
  1388. 35 3276 3343 Sc
  1389. 35 3315 2741 Sc
  1390. 35 3354 2635 Sc
  1391. 35 3393 2451 Sc
  1392. 35 3432 2395 Sc
  1393. 35 3471 1921 Sc
  1394. 35 3510 1653 Sc
  1395. 35 3549 1699 Sc
  1396. 35 3588 1565 Sc
  1397. 35 3627 1139 Sc
  1398. 35 3666 1433 Sc
  1399. 35 3705 1525 Sc
  1400. 35 3744 1218 Sc
  1401. 35 3783 1618 Sc
  1402. 35 3822 1963 Sc
  1403. 35 3861 1675 Sc
  1404. 35 3900 2278 Sc
  1405. 35 3939 2371 Sc
  1406. 35 3978 2693 Sc
  1407. 35 4017 3113 Sc
  1408. 35 4056 3097 Sc
  1409. 35 4095 3180 Sc
  1410. 35 4134 3698 Sc
  1411. 35 4173 3868 Sc
  1412. 35 4212 3848 Sc
  1413. 35 4251 3978 Sc
  1414. 35 4290 3969 Sc
  1415. 35 4329 4071 Sc
  1416. 35 4368 3952 Sc
  1417. 35 4407 3983 Sc
  1418. 35 4446 3637 Sc
  1419. 35 4485 3719 Sc
  1420. 35 4524 3665 Sc
  1421. 35 4563 3263 Sc
  1422. 35 4602 2840 Sc
  1423. 35 4641 2725 Sc
  1424. 35 4680 2550 Sc
  1425. 35 4719 2209 Sc
  1426. 35 4758 1938 Sc
  1427. 35 4797 1827 Sc
  1428. 35 4836 1715 Sc
  1429. 35 4875 1532 Sc
  1430. 35 4914 1223 Sc
  1431. 35 4953 1298 Sc
  1432. 35 4992 1357 Sc
  1433. 35 5031 1597 Sc
  1434. 35 5070 1412 Sc
  1435. 35 5109 1656 Sc
  1436. 35 5148 1810 Sc
  1437. 35 5187 1949 Sc
  1438. 35 5226 2153 Sc
  1439. 35 5265 2578 Sc
  1440. 35 5304 2680 Sc
  1441. 35 5343 3246 Sc
  1442. 35 5382 3317 Sc
  1443. 35 5421 3406 Sc
  1444. 35 5460 3698 Sc
  1445. 35 5499 3735 Sc
  1446. 35 5538 3933 Sc
  1447. 35 5577 4149 Sc
  1448. 35 5616 4211 Sc
  1449. 35 5655 3968 Sc
  1450. 35 5694 3668 Sc
  1451. 35 5733 3986 Sc
  1452. 35 5772 3744 Sc
  1453. 35 5811 3799 Sc
  1454. 35 5850 3331 Sc
  1455. 35 5889 3409 Sc
  1456. 35 5928 2786 Sc
  1457. 35 5967 2657 Sc
  1458. 35 6006 2263 Sc
  1459. 35 6045 2281 Sc
  1460. 35 6084 1878 Sc
  1461. 35 6123 1709 Sc
  1462. 35 6162 1473 Sc
  1463. 35 6201 1709 Sc
  1464. 35 6240 1759 Sc
  1465. 35 6279 1491 Sc
  1466. 35 6318 1198 Sc
  1467. 35 6357 1646 Sc
  1468. 35 6396 1651 Sc
  1469. 35 6435 1945 Sc
  1470. 35 6474 2118 Sc
  1471. 35 6513 2150 Sc
  1472. 35 6552 2617 Sc
  1473. 35 6591 2775 Sc
  1474. 35 6630 3045 Sc
  1475. 35 6669 3208 Sc
  1476. 35 6708 3272 Sc
  1477. 35 6747 3772 Sc
  1478. 35 6786 4181 Sc
  1479. 35 6825 4249 Sc
  1480. 35 6864 4318 Sc
  1481. 35 6903 4055 Sc
  1482. 35 6942 4099 Sc
  1483. 35 6981 3943 Sc
  1484. 35 7020 4088 Sc
  1485. 35 7059 3936 Sc
  1486. 35 7098 3595 Sc
  1487. 35 7137 3277 Sc
  1488. 35 7176 3170 Sc
  1489. 35 7215 2919 Sc
  1490. 35 7254 2425 Sc
  1491. 35 7293 2492 Sc
  1492. 35 7332 2129 Sc
  1493. 35 7371 2017 Sc
  1494. 35 7410 1747 Sc
  1495. 35 7449 1796 Sc
  1496. 35 7488 1558 Sc
  1497. 35 7527 1606 Sc
  1498. 35 7566 1201 Sc
  1499. 35 7605 1402 Sc
  1500. 35 7644 1481 Sc
  1501. 35 7683 1777 Sc
  1502. 35 7722 1724 Sc
  1503. 35 7761 1965 Sc
  1504. 35 7800 2281 Sc
  1505. U
  1506. PSL_cliprestore
  1507. %%EndObject
  1508. 0 A
  1509. FQ
  1510. O0
  1511. 0 0 TM
  1512. % PostScript produced by:
  1513. %@GMT: gmt psxy -R0/2/-3/4 -JX6.5i/4i -O -K sinusoidfit_lsq.txt -W2p -i0,2
  1514. %@PROJ: xy 0.00000000 2.00000000 -3.00000000 4.00000000 0.000 2.000 -3.000 4.000 +xy
  1515. %%BeginObject PSL_Layer_9
  1516. 0 setlinecap
  1517. 0 setlinejoin
  1518. 3.32551 setmiterlimit
  1519. 33 W
  1520. clipsave
  1521. 0 0 M
  1522. 7800 0 D
  1523. 0 4800 D
  1524. -7800 0 D
  1525. P
  1526. PSL_clip N
  1527. 0 2170 M
  1528. 39 241 D
  1529. 117 761 D
  1530. 39 235 D
  1531. 39 212 D
  1532. 39 181 D
  1533. 39 144 D
  1534. 39 102 D
  1535. 39 56 D
  1536. 39 7 D
  1537. 39 -40 D
  1538. 39 -87 D
  1539. 39 -131 D
  1540. 39 -170 D
  1541. 39 -203 D
  1542. 39 -229 D
  1543. 156 -1004 D
  1544. 39 -229 D
  1545. 39 -202 D
  1546. 39 -170 D
  1547. 39 -130 D
  1548. 39 -86 D
  1549. 39 -40 D
  1550. 39 8 D
  1551. 39 57 D
  1552. 39 102 D
  1553. 39 144 D
  1554. 39 182 D
  1555. 39 212 D
  1556. 39 236 D
  1557. 117 761 D
  1558. 39 241 D
  1559. 39 221 D
  1560. 39 192 D
  1561. 39 157 D
  1562. 39 116 D
  1563. 39 71 D
  1564. 39 24 D
  1565. 39 -24 D
  1566. 39 -72 D
  1567. 39 -117 D
  1568. 39 -158 D
  1569. 39 -192 D
  1570. 39 -222 D
  1571. 39 -241 D
  1572. 117 -761 D
  1573. 39 -235 D
  1574. 39 -212 D
  1575. 39 -181 D
  1576. 39 -144 D
  1577. 39 -102 D
  1578. 39 -55 D
  1579. 39 -8 D
  1580. 39 41 D
  1581. 39 87 D
  1582. 39 131 D
  1583. 39 170 D
  1584. 39 203 D
  1585. 39 229 D
  1586. 156 1003 D
  1587. 39 229 D
  1588. 39 202 D
  1589. 39 170 D
  1590. 39 130 D
  1591. 39 87 D
  1592. 39 40 D
  1593. 39 -9 D
  1594. 39 -56 D
  1595. 39 -102 D
  1596. 39 -145 D
  1597. 39 -182 D
  1598. 39 -212 D
  1599. 39 -236 D
  1600. 117 -760 D
  1601. 39 -242 D
  1602. 39 -220 D
  1603. 39 -193 D
  1604. 39 -157 D
  1605. 39 -116 D
  1606. 39 -71 D
  1607. 39 -24 D
  1608. 39 25 D
  1609. 39 72 D
  1610. 39 116 D
  1611. 39 158 D
  1612. 39 193 D
  1613. 39 221 D
  1614. 39 241 D
  1615. 117 761 D
  1616. 39 235 D
  1617. 39 212 D
  1618. 39 181 D
  1619. 39 144 D
  1620. 39 102 D
  1621. 39 56 D
  1622. 39 7 D
  1623. 39 -40 D
  1624. 39 -87 D
  1625. 39 -131 D
  1626. 39 -170 D
  1627. 39 -203 D
  1628. 39 -229 D
  1629. 156 -1004 D
  1630. 39 -229 D
  1631. 39 -202 D
  1632. 39 -170 D
  1633. 39 -130 D
  1634. 39 -86 D
  1635. 39 -40 D
  1636. 39 8 D
  1637. 39 57 D
  1638. 39 102 D
  1639. 39 144 D
  1640. 39 182 D
  1641. 39 212 D
  1642. 39 236 D
  1643. 117 761 D
  1644. 39 241 D
  1645. 39 221 D
  1646. 39 192 D
  1647. 39 157 D
  1648. 39 116 D
  1649. 39 71 D
  1650. 39 24 D
  1651. 39 -24 D
  1652. 39 -72 D
  1653. 39 -117 D
  1654. 39 -158 D
  1655. 39 -192 D
  1656. 39 -222 D
  1657. 39 -241 D
  1658. 117 -761 D
  1659. 39 -235 D
  1660. 39 -212 D
  1661. 39 -181 D
  1662. 39 -144 D
  1663. 39 -102 D
  1664. 39 -55 D
  1665. 39 -8 D
  1666. 39 41 D
  1667. 39 87 D
  1668. 39 131 D
  1669. 39 170 D
  1670. 39 203 D
  1671. 39 229 D
  1672. 156 1003 D
  1673. 39 229 D
  1674. 39 202 D
  1675. 39 170 D
  1676. 39 130 D
  1677. 39 87 D
  1678. 39 40 D
  1679. 39 -9 D
  1680. 39 -56 D
  1681. 39 -102 D
  1682. 39 -145 D
  1683. 39 -182 D
  1684. 39 -212 D
  1685. 39 -236 D
  1686. 117 -760 D
  1687. 39 -242 D
  1688. 39 -220 D
  1689. 39 -193 D
  1690. 39 -157 D
  1691. 39 -116 D
  1692. 39 -71 D
  1693. 39 -24 D
  1694. 39 25 D
  1695. 39 72 D
  1696. 39 116 D
  1697. 39 158 D
  1698. 39 193 D
  1699. 39 221 D
  1700. S
  1701. PSL_cliprestore
  1702. %%EndObject
  1703. 0 A
  1704. FQ
  1705. O0
  1706. 0 0 TM
  1707. % PostScript produced by:
  1708. %@GMT: gmt psxy -R0/2/-3/4 -JX6.5i/4i -O -K sinusoidfit_svd.txt -Sc2p -Gred -i0,2
  1709. %@PROJ: xy 0.00000000 2.00000000 -3.00000000 4.00000000 0.000 2.000 -3.000 4.000 +xy
  1710. %%BeginObject PSL_Layer_10
  1711. 0 setlinecap
  1712. 0 setlinejoin
  1713. 3.32551 setmiterlimit
  1714. clipsave
  1715. 0 0 M
  1716. 7800 0 D
  1717. 0 4800 D
  1718. -7800 0 D
  1719. P
  1720. PSL_clip N
  1721. 4 W
  1722. V
  1723. {1 0 0 C} FS
  1724. 17 0 2170 Sc
  1725. 17 39 2411 Sc
  1726. 17 78 2665 Sc
  1727. 17 117 2921 Sc
  1728. 17 156 3172 Sc
  1729. 17 195 3407 Sc
  1730. 17 234 3619 Sc
  1731. 17 273 3800 Sc
  1732. 17 312 3944 Sc
  1733. 17 351 4046 Sc
  1734. 17 390 4102 Sc
  1735. 17 429 4109 Sc
  1736. 17 468 4069 Sc
  1737. 17 507 3982 Sc
  1738. 17 546 3851 Sc
  1739. 17 585 3681 Sc
  1740. 17 624 3478 Sc
  1741. 17 663 3249 Sc
  1742. 17 702 3002 Sc
  1743. 17 741 2747 Sc
  1744. 17 780 2491 Sc
  1745. 17 819 2245 Sc
  1746. 17 858 2016 Sc
  1747. 17 897 1814 Sc
  1748. 17 936 1644 Sc
  1749. 17 975 1514 Sc
  1750. 17 1014 1428 Sc
  1751. 17 1053 1388 Sc
  1752. 17 1092 1396 Sc
  1753. 17 1131 1453 Sc
  1754. 17 1170 1555 Sc
  1755. 17 1209 1699 Sc
  1756. 17 1248 1881 Sc
  1757. 17 1287 2093 Sc
  1758. 17 1326 2329 Sc
  1759. 17 1365 2580 Sc
  1760. 17 1404 2836 Sc
  1761. 17 1443 3090 Sc
  1762. 17 1482 3331 Sc
  1763. 17 1521 3552 Sc
  1764. 17 1560 3744 Sc
  1765. 17 1599 3901 Sc
  1766. 17 1638 4017 Sc
  1767. 17 1677 4088 Sc
  1768. 17 1716 4112 Sc
  1769. 17 1755 4088 Sc
  1770. 17 1794 4016 Sc
  1771. 17 1833 3899 Sc
  1772. 17 1872 3741 Sc
  1773. 17 1911 3549 Sc
  1774. 17 1950 3327 Sc
  1775. 17 1989 3086 Sc
  1776. 17 2028 2832 Sc
  1777. 17 2067 2576 Sc
  1778. 17 2106 2325 Sc
  1779. 17 2145 2090 Sc
  1780. 17 2184 1878 Sc
  1781. 17 2223 1697 Sc
  1782. 17 2262 1553 Sc
  1783. 17 2301 1451 Sc
  1784. 17 2340 1396 Sc
  1785. 17 2379 1388 Sc
  1786. 17 2418 1429 Sc
  1787. 17 2457 1516 Sc
  1788. 17 2496 1647 Sc
  1789. 17 2535 1817 Sc
  1790. 17 2574 2020 Sc
  1791. 17 2613 2249 Sc
  1792. 17 2652 2495 Sc
  1793. 17 2691 2751 Sc
  1794. 17 2730 3006 Sc
  1795. 17 2769 3252 Sc
  1796. 17 2808 3481 Sc
  1797. 17 2847 3683 Sc
  1798. 17 2886 3853 Sc
  1799. 17 2925 3983 Sc
  1800. 17 2964 4070 Sc
  1801. 17 3003 4110 Sc
  1802. 17 3042 4101 Sc
  1803. 17 3081 4045 Sc
  1804. 17 3120 3943 Sc
  1805. 17 3159 3798 Sc
  1806. 17 3198 3616 Sc
  1807. 17 3237 3404 Sc
  1808. 17 3276 3168 Sc
  1809. 17 3315 2918 Sc
  1810. 17 3354 2661 Sc
  1811. 17 3393 2408 Sc
  1812. 17 3432 2166 Sc
  1813. 17 3471 1946 Sc
  1814. 17 3510 1753 Sc
  1815. 17 3549 1596 Sc
  1816. 17 3588 1480 Sc
  1817. 17 3627 1409 Sc
  1818. 17 3666 1385 Sc
  1819. 17 3705 1410 Sc
  1820. 17 3744 1482 Sc
  1821. 17 3783 1598 Sc
  1822. 17 3822 1756 Sc
  1823. 17 3861 1949 Sc
  1824. 17 3900 2170 Sc
  1825. 17 3939 2411 Sc
  1826. 17 3978 2665 Sc
  1827. 17 4017 2921 Sc
  1828. 17 4056 3172 Sc
  1829. 17 4095 3407 Sc
  1830. 17 4134 3619 Sc
  1831. 17 4173 3800 Sc
  1832. 17 4212 3944 Sc
  1833. 17 4251 4046 Sc
  1834. 17 4290 4102 Sc
  1835. 17 4329 4109 Sc
  1836. 17 4368 4069 Sc
  1837. 17 4407 3982 Sc
  1838. 17 4446 3851 Sc
  1839. 17 4485 3681 Sc
  1840. 17 4524 3478 Sc
  1841. 17 4563 3249 Sc
  1842. 17 4602 3002 Sc
  1843. 17 4641 2747 Sc
  1844. 17 4680 2491 Sc
  1845. 17 4719 2245 Sc
  1846. 17 4758 2016 Sc
  1847. 17 4797 1814 Sc
  1848. 17 4836 1644 Sc
  1849. 17 4875 1514 Sc
  1850. 17 4914 1428 Sc
  1851. 17 4953 1388 Sc
  1852. 17 4992 1396 Sc
  1853. 17 5031 1453 Sc
  1854. 17 5070 1555 Sc
  1855. 17 5109 1699 Sc
  1856. 17 5148 1881 Sc
  1857. 17 5187 2093 Sc
  1858. 17 5226 2329 Sc
  1859. 17 5265 2580 Sc
  1860. 17 5304 2836 Sc
  1861. 17 5343 3090 Sc
  1862. 17 5382 3331 Sc
  1863. 17 5421 3552 Sc
  1864. 17 5460 3744 Sc
  1865. 17 5499 3901 Sc
  1866. 17 5538 4017 Sc
  1867. 17 5577 4088 Sc
  1868. 17 5616 4112 Sc
  1869. 17 5655 4088 Sc
  1870. 17 5694 4016 Sc
  1871. 17 5733 3899 Sc
  1872. 17 5772 3741 Sc
  1873. 17 5811 3549 Sc
  1874. 17 5850 3327 Sc
  1875. 17 5889 3086 Sc
  1876. 17 5928 2832 Sc
  1877. 17 5967 2576 Sc
  1878. 17 6006 2325 Sc
  1879. 17 6045 2090 Sc
  1880. 17 6084 1878 Sc
  1881. 17 6123 1697 Sc
  1882. 17 6162 1553 Sc
  1883. 17 6201 1451 Sc
  1884. 17 6240 1396 Sc
  1885. 17 6279 1388 Sc
  1886. 17 6318 1429 Sc
  1887. 17 6357 1516 Sc
  1888. 17 6396 1647 Sc
  1889. 17 6435 1817 Sc
  1890. 17 6474 2020 Sc
  1891. 17 6513 2249 Sc
  1892. 17 6552 2495 Sc
  1893. 17 6591 2751 Sc
  1894. 17 6630 3006 Sc
  1895. 17 6669 3252 Sc
  1896. 17 6708 3481 Sc
  1897. 17 6747 3683 Sc
  1898. 17 6786 3853 Sc
  1899. 17 6825 3983 Sc
  1900. 17 6864 4070 Sc
  1901. 17 6903 4110 Sc
  1902. 17 6942 4101 Sc
  1903. 17 6981 4045 Sc
  1904. 17 7020 3943 Sc
  1905. 17 7059 3798 Sc
  1906. 17 7098 3616 Sc
  1907. 17 7137 3404 Sc
  1908. 17 7176 3168 Sc
  1909. 17 7215 2918 Sc
  1910. 17 7254 2661 Sc
  1911. 17 7293 2408 Sc
  1912. 17 7332 2166 Sc
  1913. 17 7371 1946 Sc
  1914. 17 7410 1753 Sc
  1915. 17 7449 1596 Sc
  1916. 17 7488 1480 Sc
  1917. 17 7527 1409 Sc
  1918. 17 7566 1385 Sc
  1919. 17 7605 1410 Sc
  1920. 17 7644 1482 Sc
  1921. 17 7683 1598 Sc
  1922. 17 7722 1756 Sc
  1923. 17 7761 1949 Sc
  1924. 17 7800 2170 Sc
  1925. U
  1926. PSL_cliprestore
  1927. %%EndObject
  1928. 0 A
  1929. FQ
  1930. O0
  1931. 0 0 TM
  1932. % PostScript produced by:
  1933. %@GMT: gmt pstext -R0/2/-3/4 -JX6.5i/4i -O -K -F+f12p+jRB+cRB -Dj0.2i
  1934. %@PROJ: xy 0.00000000 2.00000000 -3.00000000 4.00000000 0.000 2.000 -3.000 4.000 +xy
  1935. %%BeginObject PSL_Layer_11
  1936. 0 setlinecap
  1937. 0 setlinejoin
  1938. 3.32551 setmiterlimit
  1939. clipsave
  1940. 0 0 M
  1941. 7800 0 D
  1942. 0 4800 D
  1943. -7800 0 D
  1944. P
  1945. PSL_clip N
  1946. 7560 240 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1947. 200 F0
  1948. V MU 0 0 M (Fit y\(x\) = a + b*cos\(6) FP 200 F12 (p) FP 200 F0 (x - c\) + ) FP 200 F12 (e) FP 200 F0 (\(x\) = a + b) FP 0 -50 G 140 F0 (1) FP 0 50 G 200 F0 (*cos\(6) FP 200 F12 (p) FP 200 F0 (x\) + b) FP 0 -50 G 140 F0 (2) FP 0 50 G 200 F0 (*sin\(6) FP 200 F12 (p) FP 200 F0 (x\) + ) FP 200 F12 (e) FP 200 F0 (\(x\)) FP pathbbox N pop exch pop add U neg 0 G
  1949. (Fit y\(x\) = a + b*cos\(6) Z
  1950. 200 F12 (p) Z
  1951. 200 F0 (x - c\) + ) Z
  1952. 200 F12 (e) Z
  1953. 200 F0 (\(x\) = a + b) Z
  1954. 0 -50 G 140 F0 (1) Z
  1955. 0 50 G 200 F0 (*cos\(6) Z
  1956. 200 F12 (p) Z
  1957. 200 F0 (x\) + b) Z
  1958. 0 -50 G 140 F0 (2) Z
  1959. 0 50 G 200 F0 (*sin\(6) Z
  1960. 200 F12 (p) Z
  1961. 200 F0 (x\) + ) Z
  1962. 200 F12 (e) Z
  1963. 200 F0 (\(x\)) Z
  1964. PSL_cliprestore
  1965. %%EndObject
  1966. 0 A
  1967. FQ
  1968. O0
  1969. 0 0 TM
  1970. % PostScript produced by:
  1971. %@GMT: gmt psxy -R0/2/-3/4 -JX6.5i/4i -O -T
  1972. %@PROJ: xy 0.00000000 2.00000000 -3.00000000 4.00000000 0.000 2.000 -3.000 4.000 +xy
  1973. %%BeginObject PSL_Layer_12
  1974. 0 setlinecap
  1975. 0 setlinejoin
  1976. 3.32551 setmiterlimit
  1977. %%EndObject
  1978. grestore
  1979. PSL_movie_completion /PSL_movie_completion {} def
  1980. %PSL_Begin_Trailer
  1981. %%PageTrailer
  1982. U
  1983. showpage
  1984. %%Trailer
  1985. end
  1986. %%EOF
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...