-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiments.nb
2733 lines (2637 loc) · 119 KB
/
experiments.nb
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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 11.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 121564, 2725]
NotebookOptionsPosition[ 114277, 2542]
NotebookOutlinePosition[ 114653, 2558]
CellTagsIndexPosition[ 114610, 2555]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"ColorConvert", "[",
RowBox[{"imgRotated", ",", " ", "\"\<Grayscale\>\""}], "]"}]], "Input",
CellChangeTimes->{{3.7111019139337378`*^9,
3.711101926099238*^9}},ExpressionUUID->"72836462-12a7-4496-9436-\
b44fec7f0222"],
Cell[BoxData[
GraphicsBox[
TagBox[RasterBox[CompressedData["
1:eJzt10FqwlAYhdFHRx26he6i0w47VboAxShOIsRC6Q67q5oOCoKNeSb/q9qe
DyII8Z5EMtCHxXa6uksp7e7bl+n87alp5u+zSfvmpd5t1nW1fK5fq3XVPC6+
Tvtoj2V7fEqSJEmSpKsoFf6fnjr6DSOS6jFCvDOMwdb3p8pLw2/vpqgcL0g5
bYUiXVI8ckyVMg6ksgTjugyPFYPBYDAYDEY84ecVg8FgMBgMBoPBYDAYDAaD
wWAwGAwGg/F/jD9zI2XXi3xX6acKz0cZ3eNjib7lEUT2dO52/uDQqy48f54x
ZDzPGLHcZ4RMHxqxg5IkSZJ0wfb2nPWS
"], {{0, 200}, {100, 0}}, {0, 255},
ColorFunction->GrayLevel],
BoxForm`ImageTag[
"Byte", ColorSpace -> "Grayscale", Interleaving -> None, MetaInformation ->
Association["Comments" -> Association["Comment" -> "Created with GIMP"]]],
Selectable->False],
DefaultBaseStyle->"ImageGraphics",
ImageSizeRaw->{100, 200},
PlotRange->{{0, 100}, {0, 200}}]], "Output",
CellChangeTimes->{{3.711101916017722*^9, 3.7111019270477896`*^9},
3.7115411691139507`*^9},ExpressionUUID->"d20a5d0f-f3ca-4eb6-b3af-\
7e54c33506f0"]
}, Open ]],
Cell[BoxData[
RowBox[{
RowBox[{"imgArrGrey", " ", "=", " ",
RowBox[{"ImageData", "[",
RowBox[{"ColorConvert", "[",
RowBox[{"imgRotated", ",", " ", "\"\<Grayscale\>\""}], "]"}], "]"}]}],
";"}]], "Input",ExpressionUUID->"1ea45cc5-f2fb-42ce-8b33-b877e11865c3"],
Cell[CellGroupData[{
Cell[BoxData["imgArrGrey"], "Input",
CellChangeTimes->{{3.7111019904580503`*^9,
3.7111019914580507`*^9}},ExpressionUUID->"b1535386-781a-4cb9-a42a-\
465f48dc4ca5"],
Cell[BoxData[
InterpretationBox[
TagBox[
FrameBox[GridBox[{
{
ItemBox[
TagBox[
RowBox[{"{",
TemplateBox[{"1"},
"OutputSizeLimit`Skeleton"], "}"}],
Short[#, 5]& ],
BaseStyle->{Deployed -> False},
StripOnInput->False]},
{GridBox[{
{
TagBox[
TooltipBox[
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource[
"FEStrings", "sizeBriefExplanation"], StandardForm],
ImageSizeCache->{142., {6., 19.}}],
StripOnInput->False,
DynamicUpdating->True], "OSLText",
StripOnInput->False],
StyleBox[
DynamicBox[
ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeExplanation"],
StandardForm]], DynamicUpdating -> True, StripOnInput ->
False]],
Annotation[#,
Style[
Dynamic[
FEPrivate`FrontEndResource["FEStrings", "sizeExplanation"]],
DynamicUpdating -> True], "Tooltip"]& ],
ButtonBox[
PaneSelectorBox[{False->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowLess"],
StandardForm],
ImageSizeCache->{114., {1., 19.}}],
StripOnInput->False,
DynamicUpdating->True], "OSLControl",
StripOnInput->False], True->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowLess"],
StandardForm]],
StripOnInput->False,
DynamicUpdating->True], "OSLControlActive",
StripOnInput->False]}, Dynamic[
CurrentValue["MouseOver"]],
Alignment->Center,
FrameMargins->0,
ImageSize->{Automatic, 25}],
Appearance->None,
BaselinePosition->Baseline,
ButtonFunction:>OutputSizeLimit`ButtonFunction[
OutputSizeLimit`Defer, 188, 29127208651724501140, 5/2],
Enabled->True,
Evaluator->Automatic,
Method->"Queued"],
ButtonBox[
PaneSelectorBox[{False->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowMore"],
StandardForm],
ImageSizeCache->{135., {1., 19.}}],
StripOnInput->False,
DynamicUpdating->True], "OSLControl",
StripOnInput->False], True->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowMore"],
StandardForm]],
StripOnInput->False,
DynamicUpdating->True], "OSLControlActive",
StripOnInput->False]}, Dynamic[
CurrentValue["MouseOver"]],
Alignment->Center,
FrameMargins->0,
ImageSize->{Automatic, 25}],
Appearance->None,
BaselinePosition->Baseline,
ButtonFunction:>OutputSizeLimit`ButtonFunction[
OutputSizeLimit`Defer, 188, 29127208651724501140, 5 2],
Enabled->True,
Evaluator->Automatic,
Method->"Queued"],
ButtonBox[
PaneSelectorBox[{False->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowAll"],
StandardForm],
ImageSizeCache->{99., {1., 19.}}],
StripOnInput->False,
DynamicUpdating->True], "OSLControl",
StripOnInput->False], True->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowAll"],
StandardForm]],
StripOnInput->False,
DynamicUpdating->True], "OSLControlActive",
StripOnInput->False]}, Dynamic[
CurrentValue["MouseOver"]],
Alignment->Center,
FrameMargins->0,
ImageSize->{Automatic, 25}],
Appearance->None,
BaselinePosition->Baseline,
ButtonFunction:>OutputSizeLimit`ButtonFunction[
OutputSizeLimit`Defer, 188, 29127208651724501140, Infinity],
Enabled->True,
Evaluator->Automatic,
Method->"Queued"],
ButtonBox[
PaneSelectorBox[{False->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeChangeLimit"],
StandardForm],
ImageSizeCache->{169., {1., 19.}}],
StripOnInput->False,
DynamicUpdating->True], "OSLControl",
StripOnInput->False], True->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeChangeLimit"],
StandardForm]],
StripOnInput->False,
DynamicUpdating->True], "OSLControlActive",
StripOnInput->False]}, Dynamic[
CurrentValue["MouseOver"]],
Alignment->Center,
FrameMargins->0,
ImageSize->{Automatic, 25}],
Appearance->None,
BaselinePosition->Baseline,
ButtonFunction:>FrontEndExecute[{
FrontEnd`SetOptions[
FrontEnd`$FrontEnd,
FrontEnd`PreferencesSettings -> {"Page" -> "Advanced"}],
FrontEnd`FrontEndToken["PreferencesDialog"]}],
Evaluator->None,
Method->"Preemptive"]}
},
AutoDelete->False,
FrameStyle->GrayLevel[0.85],
GridBoxDividers->{"Columns" -> {False, {True}}},
GridBoxItemSize->{"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}},
GridBoxSpacings->{"Columns" -> {{2}}}]}
},
DefaultBaseStyle->"Column",
GridBoxAlignment->{
"Columns" -> {{Left}}, "ColumnsIndexed" -> {}, "Rows" -> {{Baseline}},
"RowsIndexed" -> {}},
GridBoxDividers->{
"Columns" -> {{False}}, "ColumnsIndexed" -> {}, "Rows" -> {{False}},
"RowsIndexed" -> {}},
GridBoxItemSize->{
"Columns" -> {{Automatic}}, "ColumnsIndexed" -> {}, "Rows" -> {{1.}},
"RowsIndexed" -> {}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.5599999999999999]},
Offset[0.27999999999999997`]}, "ColumnsIndexed" -> {}, "Rows" -> {
Offset[0.2],
Offset[1.2], {
Offset[0.4]},
Offset[0.2]}, "RowsIndexed" -> {}}],
BaseStyle->"OutputSizeLimit",
FrameMargins->{{12, 12}, {0, 15}},
FrameStyle->GrayLevel[0.85],
RoundingRadius->5,
StripOnInput->False],
Deploy,
DefaultBaseStyle->"Deploy"],
If[29127208651724501140 === $SessionID,
Out[188], Message[
MessageName[Syntax, "noinfoker"]]; Missing["NotAvailable"];
Null]]], "Output",
CellChangeTimes->{3.711101992254928*^9,
3.7115411691920805`*^9},ExpressionUUID->"2d84d130-830f-4801-b666-\
04c5429535b9"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Dimensions", "[", "imgArrGrey", "]"}]], "Input",
CellChangeTimes->{{3.711101996276599*^9,
3.711102002367202*^9}},ExpressionUUID->"7793d318-d9c7-448a-8241-\
6d2875a16fc5"],
Cell[BoxData[
RowBox[{"{",
RowBox[{"200", ",", "100"}], "}"}]], "Output",
CellChangeTimes->{3.711102002973589*^9,
3.7115411692077017`*^9},ExpressionUUID->"fcd19754-2edb-461b-ba6e-\
f7f3f683c05d"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Max", "[",
RowBox[{"{",
RowBox[{
RowBox[{"{", "1", "}"}], ",",
RowBox[{"{", "1", "}"}], ",",
RowBox[{"{", "2", "}"}], ",",
RowBox[{"{", "1", "}"}]}], "}"}], "]"}]], "Input",
CellChangeTimes->{{3.7111031721689405`*^9, 3.7111031775437884`*^9}, {
3.7111037762912073`*^9, 3.7111037803058386`*^9}, {3.7111038372887907`*^9,
3.7111038530787344`*^9}},ExpressionUUID->"cc08cf18-8164-4241-be49-\
3eabb362e089"],
Cell[BoxData["2"], "Output",
CellChangeTimes->{
3.7111031782752295`*^9, {3.7111037773380833`*^9, 3.7111037819933414`*^9}, {
3.7111038451665936`*^9, 3.7111038541534348`*^9},
3.711541169217187*^9},ExpressionUUID->"b3d5d26e-1bd0-4e35-b4c2-\
9e454b1c278a"]
}, Open ]],
Cell[BoxData[
RowBox[{
RowBox[{"Import", "[",
RowBox[{"FileNameJoin", "[",
RowBox[{"{",
RowBox[{
RowBox[{"NotebookDirectory", "[", "]"}], ",",
"\"\<modules/fitfunctions.m\>\""}], "}"}], "]"}], "]"}], ";"}]], "Input",
CellChangeTimes->{
3.7113510772032766`*^9},ExpressionUUID->"e26c0bb5-0b7c-42a1-8977-\
2bcea53396c0"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"FFitEdges", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "1"}], "}"}], ",",
RowBox[{"{",
RowBox[{"1", ",", "2"}], "}"}]}], "}"}], ",", " ",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "1"}], "}"}], ",", " ",
RowBox[{"{",
RowBox[{"1", ",", "2"}], "}"}]}], "}"}], ",", " ",
RowBox[{"{",
RowBox[{"2", ",", "2"}], "}"}], ",", " ", "2"}], "]"}]], "Input",
CellChangeTimes->{{3.711103460851859*^9, 3.7111035107728567`*^9}, {
3.711103598544178*^9, 3.7111036014601326`*^9}, 3.7111042328414645`*^9, {
3.711104526556175*^9,
3.711104551520571*^9}},ExpressionUUID->"33a87d30-8c4d-498f-8b72-\
cb4000ea5dce"],
Cell[BoxData["2"], "Output",
CellChangeTimes->{
3.711103514020029*^9, 3.7111035519104004`*^9, {3.7111035868429456`*^9,
3.7111036020932107`*^9}, 3.7111037308776813`*^9, 3.711104177251388*^9,
3.71110423471095*^9, 3.711104346020338*^9, 3.711104395230445*^9, {
3.7111045284629636`*^9, 3.71110455321442*^9},
3.71154116925109*^9},ExpressionUUID->"a6161208-783c-40cb-8a94-\
cbd65a790982"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{", "1", "}"}], ",",
RowBox[{"{", "1", "}"}], ",",
RowBox[{"{", "2", "}"}], ",",
RowBox[{"{", "1", "}"}]}], "}"}], "[",
RowBox[{"[",
RowBox[{"1", ";;", "2"}], "]"}], "]"}]], "Input",
CellChangeTimes->{{3.7111036581067324`*^9, 3.711103658752741*^9}, {
3.711103887963426*^9,
3.7111038971391044`*^9}},ExpressionUUID->"4d4620fa-af6f-4755-9a52-\
2a0b9dc9f05d"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{", "1", "}"}], ",",
RowBox[{"{", "1", "}"}]}], "}"}]], "Output",
CellChangeTimes->{
3.711541169266714*^9},ExpressionUUID->"42c4b27f-71ec-4d48-9e85-\
257e25d20e89"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"m", "=",
RowBox[{"RandomInteger", "[",
RowBox[{"10", ",",
RowBox[{"{",
RowBox[{"4", ",", "4"}], "}"}]}], "]"}]}]], "Input",
CellChangeTimes->{{3.711103943511767*^9,
3.7111039435273933`*^9}},ExpressionUUID->"b05be9a7-bcba-4dbc-9a91-\
e96a77e45c6d"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"4", ",", "2", ",", "7", ",", "6"}], "}"}], ",",
RowBox[{"{",
RowBox[{"5", ",", "9", ",", "10", ",", "9"}], "}"}], ",",
RowBox[{"{",
RowBox[{"2", ",", "1", ",", "8", ",", "6"}], "}"}], ",",
RowBox[{"{",
RowBox[{"5", ",", "5", ",", "1", ",", "4"}], "}"}]}], "}"}]], "Output",
CellChangeTimes->{3.7111039448974905`*^9,
3.7115411692779083`*^9},ExpressionUUID->"89ac8f35-cb20-4e82-8a07-\
d1ce52867415"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"MatrixForm", "[",
RowBox[{"m", "[",
RowBox[{"[",
RowBox[{
RowBox[{"2", ";;", "4"}], ",",
RowBox[{"2", ";;", "4"}]}], "]"}], "]"}], "]"}]], "Input",
CellChangeTimes->{{3.711103951654868*^9,
3.711103978375762*^9}},ExpressionUUID->"9960fa5a-200c-4728-b783-\
1b84b135bf46"],
Cell[BoxData[
TagBox[
RowBox[{"(", "\[NoBreak]", GridBox[{
{"9", "10", "9"},
{"1", "8", "6"},
{"5", "1", "4"}
},
GridBoxAlignment->{
"Columns" -> {{Center}}, "ColumnsIndexed" -> {}, "Rows" -> {{Baseline}},
"RowsIndexed" -> {}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.7]},
Offset[0.27999999999999997`]}, "ColumnsIndexed" -> {}, "Rows" -> {
Offset[0.2], {
Offset[0.4]},
Offset[0.2]}, "RowsIndexed" -> {}}], "\[NoBreak]", ")"}],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]]], "Output",
CellChangeTimes->{{3.7111039664757104`*^9, 3.7111039789504504`*^9},
3.7115411692854095`*^9},ExpressionUUID->"799500f4-9501-4ec2-8c63-\
7bfe9a137cd0"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"MatrixForm", "[", "m", "]"}]], "Input",
CellChangeTimes->{{3.711103984574382*^9,
3.7111039865580473`*^9}},ExpressionUUID->"9717a6db-f1ed-46c5-bf34-\
cb64ae680d38"],
Cell[BoxData[
TagBox[
RowBox[{"(", "\[NoBreak]", GridBox[{
{"4", "2", "7", "6"},
{"5", "9", "10", "9"},
{"2", "1", "8", "6"},
{"5", "5", "1", "4"}
},
GridBoxAlignment->{
"Columns" -> {{Center}}, "ColumnsIndexed" -> {}, "Rows" -> {{Baseline}},
"RowsIndexed" -> {}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.7]},
Offset[0.27999999999999997`]}, "ColumnsIndexed" -> {}, "Rows" -> {
Offset[0.2], {
Offset[0.4]},
Offset[0.2]}, "RowsIndexed" -> {}}], "\[NoBreak]", ")"}],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]]], "Output",
CellChangeTimes->{3.711103986964299*^9,
3.7115411693010406`*^9},ExpressionUUID->"4770d4a0-12ab-4e88-bbc0-\
1d7fd2168b97"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
TagBox[
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "1"}], "}"}], ",",
RowBox[{"{",
RowBox[{"1", ",", "1"}], "}"}]}], "}"}], "\[LeftDoubleBracket]",
RowBox[{
RowBox[{"1", ";;", "2"}], ",",
RowBox[{"1", ";;", "2"}]}], "\[RightDoubleBracket]"}],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]]], "Input",
CellChangeTimes->{{3.7111044889625545`*^9,
3.7111045132780423`*^9}},ExpressionUUID->"1b3538dd-e69e-40d7-8087-\
c6f96a91f7e0"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "1"}], "}"}], ",",
RowBox[{"{",
RowBox[{"1", ",", "1"}], "}"}]}], "}"}]], "Output",
CellChangeTimes->{3.7111045144249067`*^9,
3.7115411693010406`*^9},ExpressionUUID->"623345b8-118b-42bb-86cf-\
e0aea6cdb0a4"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{", "1", "}"}], ",",
RowBox[{"{", "1", "}"}], ",",
RowBox[{"{", "1", "}"}], ",",
RowBox[{"{", "1", "}"}]}], "}"}], "\[LeftDoubleBracket]",
RowBox[{
RowBox[{"1", ";;", "2"}], ",",
RowBox[{"1", ";;", "2"}]}], "\[RightDoubleBracket]"}]], "Input",
CellChangeTimes->{{3.711104447764482*^9,
3.7111044606684246`*^9}},ExpressionUUID->"99829de2-7633-44b3-af6f-\
d23b4506f585"],
Cell[BoxData[
TemplateBox[{
"Part","take",
"\"Cannot take positions \\!\\(\\*RowBox[{\\\"1\\\"}]\\) through \
\\!\\(\\*RowBox[{\\\"2\\\"}]\\) in \\!\\(\\*RowBox[{\\\"{\\\", \\\"1\\\", \
\\\"}\\\"}]\\).\"",2,198,212,29127208651724501140,"Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.7111044619044223`*^9,
3.711541169316669*^9},ExpressionUUID->"6723d5e9-733f-4057-a402-\
057f79df8f3f"],
Cell[BoxData[
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{", "1", "}"}], ",",
RowBox[{"{", "1", "}"}], ",",
RowBox[{"{", "1", "}"}], ",",
RowBox[{"{", "1", "}"}]}], "}"}], "\[LeftDoubleBracket]",
RowBox[{
RowBox[{"1", ";;", "2"}], ",",
RowBox[{"1", ";;", "2"}]}], "\[RightDoubleBracket]"}]], "Output",
CellChangeTimes->{{3.7111044505805244`*^9, 3.711104461906422*^9},
3.7115411693322916`*^9},ExpressionUUID->"d19b82c3-f15c-4f76-9150-\
3c606033dd70"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"1", ";;", "2"}]], "Input",ExpressionUUID->"d668b348-c4c3-4cd4-b85b-3a1b9dd08ead"],
Cell[BoxData[
RowBox[{"1", ";;", "2"}]], "Output",
CellChangeTimes->{3.711104438876442*^9,
3.7115411693322916`*^9},ExpressionUUID->"076b5a3e-5a17-4756-9671-\
166091b87315"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"RandomReal", "[", "]"}]], "Input",
CellChangeTimes->{{3.711106885492914*^9,
3.7111068886396713`*^9}},ExpressionUUID->"ba67470b-df39-43e7-a375-\
703c5d89bda7"],
Cell[BoxData["0.022080360892553275`"], "Output",
CellChangeTimes->{3.711106889448864*^9,
3.7115411693479166`*^9},ExpressionUUID->"2d1c885b-58c1-4398-905c-\
09c4072fe463"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"Ordering", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-", "2"}], ",",
RowBox[{"-", "1"}], ",", "1"}], "}"}], ",",
RowBox[{"-", "1"}]}], "]"}], "\[IndentingNewLine]"}]], "Input",
CellChangeTimes->{{3.7111165224088035`*^9, 3.711116532188857*^9}, {
3.711116565851036*^9,
3.711116585356245*^9}},ExpressionUUID->"dfce5973-a57b-4bda-a50d-\
8f608cce477c"],
Cell[BoxData[
RowBox[{"{", "3", "}"}]], "Output",
CellChangeTimes->{{3.711116571694208*^9, 3.711116586210704*^9},
3.7115411693479166`*^9},ExpressionUUID->"f68da94e-c79b-42e8-968b-\
9732b34bf162"]
}, Open ]],
Cell[BoxData[
RowBox[{
RowBox[{"Import", "[",
RowBox[{"FileNameJoin", "[",
RowBox[{"{",
RowBox[{
RowBox[{"NotebookDirectory", "[", "]"}], ",",
"\"\<modules/gielis.m\>\""}], "}"}], "]"}], "]"}], ";"}]], "Input",Expre\
ssionUUID->"81954cc5-4462-4653-8d76-1e1b5e021f39"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"t", " ", "=", " ",
RowBox[{"GielisScaled", "[",
RowBox[{"100", ",", " ",
RowBox[{"{",
RowBox[{
RowBox[{"-", "100"}], ",", "100"}], "}"}], ",", " ",
RowBox[{"{",
RowBox[{
"1", ",", "1", ",", "7", ",", "3", ",", "3", ",", "7", ",", "3"}],
"}"}]}], "]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"ListPlot", "[", "t", "]"}]}], "Input",
CellChangeTimes->{{3.711248156760008*^9, 3.71124815678382*^9}, {
3.711248498006092*^9, 3.711248535866817*^9}, 3.711248574722299*^9, {
3.7112855125203867`*^9, 3.7112855135396767`*^9}, {3.7112855475291777`*^9,
3.711285549228467*^9}, {3.7112856588103228`*^9, 3.711285659304307*^9},
3.7112862315467377`*^9, 3.711347317902435*^9, {3.71134735401042*^9,
3.7113474044312067`*^9}, {3.7113474563758183`*^9,
3.7113474698247495`*^9}, {3.711347588256938*^9, 3.7113476157628727`*^9},
3.711347700273374*^9, {3.7113479416957397`*^9,
3.711347963621457*^9}},ExpressionUUID->"d9854df0-fd7f-4913-a984-\
224c106d1841"],
Cell[BoxData[
GraphicsBox[{{}, {{},
{RGBColor[0.368417, 0.506779, 0.709798], PointSize[0.009166666666666668],
AbsoluteThickness[1.6], PointBox[CompressedData["
1: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
zl4dSqipJJZ+nYbDBz/+BV9R0bE=
"]]}, {}}, {}, {}, {{}, {}}, {{}, {}}},
AspectRatio->NCache[GoldenRatio^(-1), 0.6180339887498948],
Axes->{True, True},
AxesLabel->{None, None},
AxesOrigin->{0, 0},
DisplayFunction->Identity,
Frame->{{False, False}, {False, False}},
FrameLabel->{{None, None}, {None, None}},
FrameTicks->{{Automatic, Automatic}, {Automatic, Automatic}},
GridLines->{None, None},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
ImagePadding->All,
Method->{"CoordinatesToolOptions" -> {"DisplayFunction" -> ({
(Identity[#]& )[
Part[#, 1]],
(Identity[#]& )[
Part[#, 2]]}& ), "CopiedValueFunction" -> ({
(Identity[#]& )[
Part[#, 1]],
(Identity[#]& )[
Part[#, 2]]}& )}},
PlotRange->{{-100., 100.}, {-146.99701183292382`, 42.913698470332996`}},
PlotRangeClipping->True,
PlotRangePadding->{{
Scaled[0.02],
Scaled[0.02]}, {
Scaled[0.05],
Scaled[0.05]}},
Ticks->{Automatic, Automatic}]], "Output",
CellChangeTimes->{
3.7115411694104166`*^9},ExpressionUUID->"a10d8879-6ff7-45b6-a454-\
4acfa75ecc55"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData["t"], "Input",
CellChangeTimes->{
3.7113607741022205`*^9},ExpressionUUID->"acb2b03c-5581-4e77-bba8-\
4c4e0539a8bb"],
Cell[BoxData[
InterpretationBox[
TagBox[
FrameBox[GridBox[{
{
ItemBox[
TagBox[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{"-", "100"}], "+",
FractionBox[
RowBox[{"200", " ",
RowBox[{"(",
RowBox[{
FractionBox[
RowBox[{"Cos", "[",
FractionBox["\[Pi]", "50"], "]"}],
SuperscriptBox[
RowBox[{"(",
TemplateBox[{"1"},
"OutputSizeLimit`Skeleton"], ")"}],
RowBox[{"1", "/", "3"}]]], "+",
FractionBox[
RowBox[{"Sin", "[",
FractionBox[
TemplateBox[{"1"},
"OutputSizeLimit`Skeleton"], "50"], "]"}],
TemplateBox[{"1"},
"OutputSizeLimit`Skeleton"]]}], ")"}]}],
RowBox[{
FractionBox[
RowBox[{"Sin", "[",
FractionBox[
RowBox[{"7", " ", "\[Pi]"}], "50"], "]"}],
SuperscriptBox[
RowBox[{"(",
TemplateBox[{"1"},
"OutputSizeLimit`Skeleton"], ")"}],
RowBox[{"1", "/", "3"}]]], "+",
FractionBox[
RowBox[{"Cos", "[",
FractionBox[
TemplateBox[{"1"},
"OutputSizeLimit`Skeleton"], "25"], "]"}],
TemplateBox[{"1"},
"OutputSizeLimit`Skeleton"]]}]]}], ",",
FractionBox[
RowBox[{"200", " ",
RowBox[{"Sin", "[",
FractionBox["\[Pi]", "50"], "]"}]}],
RowBox[{
SuperscriptBox[
RowBox[{"(",
TemplateBox[{"1"},
"OutputSizeLimit`Skeleton"], ")"}],
RowBox[{"1", "/", "3"}]], " ",
RowBox[{"(",
TemplateBox[{"1"},
"OutputSizeLimit`Skeleton"], ")"}]}]]}], "}"}], ",",
TemplateBox[{"98"},
"OutputSizeLimit`Skeleton"], ",",
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{"-", "100"}], "+",
FractionBox[
RowBox[{"200", " ",
TemplateBox[{"1"},
"OutputSizeLimit`Skeleton"]}],
TemplateBox[{"1"},
"OutputSizeLimit`Skeleton"]]}], ",", "0"}], "}"}]}], "}"}],
Short[#, 5]& ],
BaseStyle->{Deployed -> False},
StripOnInput->False]},
{GridBox[{
{
TagBox[
TooltipBox[
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource[
"FEStrings", "sizeBriefExplanation"], StandardForm],
ImageSizeCache->{142., {6., 19.}}],
StripOnInput->False,
DynamicUpdating->True], "OSLText",
StripOnInput->False],
StyleBox[
DynamicBox[
ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeExplanation"],
StandardForm]], DynamicUpdating -> True, StripOnInput ->
False]],
Annotation[#,
Style[
Dynamic[
FEPrivate`FrontEndResource["FEStrings", "sizeExplanation"]],
DynamicUpdating -> True], "Tooltip"]& ],
ButtonBox[
PaneSelectorBox[{False->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowLess"],
StandardForm],
ImageSizeCache->{114., {1., 19.}}],
StripOnInput->False,
DynamicUpdating->True], "OSLControl",
StripOnInput->False], True->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowLess"],
StandardForm]],
StripOnInput->False,
DynamicUpdating->True], "OSLControlActive",
StripOnInput->False]}, Dynamic[
CurrentValue["MouseOver"]],
Alignment->Center,
FrameMargins->0,
ImageSize->{Automatic, 25}],
Appearance->None,
BaselinePosition->Baseline,
ButtonFunction:>OutputSizeLimit`ButtonFunction[
OutputSizeLimit`Defer, 205, 29127208651724501140, 5/2],
Enabled->True,
Evaluator->Automatic,
Method->"Queued"],
ButtonBox[
PaneSelectorBox[{False->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowMore"],
StandardForm],
ImageSizeCache->{135., {1., 19.}}],
StripOnInput->False,
DynamicUpdating->True], "OSLControl",
StripOnInput->False], True->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowMore"],
StandardForm]],
StripOnInput->False,
DynamicUpdating->True], "OSLControlActive",
StripOnInput->False]}, Dynamic[
CurrentValue["MouseOver"]],
Alignment->Center,
FrameMargins->0,
ImageSize->{Automatic, 25}],
Appearance->None,
BaselinePosition->Baseline,
ButtonFunction:>OutputSizeLimit`ButtonFunction[
OutputSizeLimit`Defer, 205, 29127208651724501140, 5 2],
Enabled->True,
Evaluator->Automatic,
Method->"Queued"],
ButtonBox[
PaneSelectorBox[{False->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowAll"],
StandardForm],
ImageSizeCache->{99., {1., 19.}}],
StripOnInput->False,
DynamicUpdating->True], "OSLControl",
StripOnInput->False], True->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeShowAll"],
StandardForm]],
StripOnInput->False,
DynamicUpdating->True], "OSLControlActive",
StripOnInput->False]}, Dynamic[
CurrentValue["MouseOver"]],
Alignment->Center,
FrameMargins->0,
ImageSize->{Automatic, 25}],
Appearance->None,
BaselinePosition->Baseline,
ButtonFunction:>OutputSizeLimit`ButtonFunction[
OutputSizeLimit`Defer, 205, 29127208651724501140, Infinity],
Enabled->True,
Evaluator->Automatic,
Method->"Queued"],
ButtonBox[
PaneSelectorBox[{False->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeChangeLimit"],
StandardForm],
ImageSizeCache->{169., {1., 19.}}],
StripOnInput->False,
DynamicUpdating->True], "OSLControl",
StripOnInput->False], True->
StyleBox[
StyleBox[
DynamicBox[ToBoxes[
FEPrivate`FrontEndResource["FEStrings", "sizeChangeLimit"],
StandardForm]],
StripOnInput->False,
DynamicUpdating->True], "OSLControlActive",
StripOnInput->False]}, Dynamic[
CurrentValue["MouseOver"]],
Alignment->Center,
FrameMargins->0,
ImageSize->{Automatic, 25}],
Appearance->None,
BaselinePosition->Baseline,
ButtonFunction:>FrontEndExecute[{
FrontEnd`SetOptions[
FrontEnd`$FrontEnd,
FrontEnd`PreferencesSettings -> {"Page" -> "Advanced"}],
FrontEnd`FrontEndToken["PreferencesDialog"]}],
Evaluator->None,
Method->"Preemptive"]}
},
AutoDelete->False,
FrameStyle->GrayLevel[0.85],
GridBoxDividers->{"Columns" -> {False, {True}}},
GridBoxItemSize->{"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}},
GridBoxSpacings->{"Columns" -> {{2}}}]}
},
DefaultBaseStyle->"Column",
GridBoxAlignment->{
"Columns" -> {{Left}}, "ColumnsIndexed" -> {}, "Rows" -> {{Baseline}},
"RowsIndexed" -> {}},
GridBoxDividers->{
"Columns" -> {{False}}, "ColumnsIndexed" -> {}, "Rows" -> {{False}},
"RowsIndexed" -> {}},
GridBoxItemSize->{
"Columns" -> {{Automatic}}, "ColumnsIndexed" -> {}, "Rows" -> {{1.}},
"RowsIndexed" -> {}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.5599999999999999]},
Offset[0.27999999999999997`]}, "ColumnsIndexed" -> {}, "Rows" -> {
Offset[0.2],
Offset[1.2], {
Offset[0.4]},
Offset[0.2]}, "RowsIndexed" -> {}}],
BaseStyle->"OutputSizeLimit",
FrameMargins->{{12, 12}, {0, 15}},
FrameStyle->GrayLevel[0.85],
RoundingRadius->5,
StripOnInput->False],
Deploy,
DefaultBaseStyle->"Deploy"],
If[29127208651724501140 === $SessionID,
Out[205], Message[
MessageName[Syntax, "noinfoker"]]; Missing["NotAvailable"];
Null]]], "Output",
CellChangeTimes->{{3.711347464869891*^9, 3.7113474709384384`*^9},
3.711347502411134*^9, {3.7113475827297354`*^9, 3.7113476167851596`*^9},
3.711347760325818*^9, 3.7113478053104415`*^9, 3.7113478391542397`*^9, {
3.711347931821818*^9, 3.711347964909192*^9}, {3.7113607708976088`*^9,
3.7113607750127287`*^9},
3.7115411694416695`*^9},ExpressionUUID->"4008c318-1d99-457e-bd0e-\
fffec9ad5dc2"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"t", " ", "=",