This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
erroranalysis.nb
3903 lines (3714 loc) · 181 KB
/
erroranalysis.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.3' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 181273, 3895]
NotebookOptionsPosition[ 166382, 3648]
NotebookOutlinePosition[ 166754, 3664]
CellTagsIndexPosition[ 166711, 3661]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[""], "Input",
CellChangeTimes->{{3.7615960595088654`*^9,
3.7615960625144234`*^9}},ExpressionUUID->"25f1942e-9c8d-4c01-a239-\
1de86d0052d9"],
Cell[CellGroupData[{
Cell["L = 8", "Section",
CellChangeTimes->{{3.761596104163724*^9,
3.7615961219848843`*^9}},ExpressionUUID->"8ab22070-5c29-451a-b126-\
a75732dc3865"],
Cell[BoxData[{
RowBox[{
RowBox[{"arr1", "=", " ",
RowBox[{"{",
RowBox[{
"0.88414163", " ", ",", " ", "0.96159452", " ", ",", " ", "0.96350320",
" ", ",", " ", "0.95575841", " ", ",", " ", "0.95303361", " ", ",", " ",
"0.95298291", " ", ",", " ", "0.95009188"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr2", " ", "=", " ",
RowBox[{"{",
RowBox[{
"0.87760574", " ", ",", " ", "0.95757561", " ", ",", " ", "0.95861403",
" ", ",", " ", "0.95776500", " ", ",", " ", "0.95015892", " ", ",", " ",
"0.94979524", " ", ",", " ", "0.95239590"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr3", " ", "=", " ",
RowBox[{"{",
RowBox[{
"0.88792931", " ", ",", " ", "0.96106931", " ", ",", " ", "0.96229792",
" ", ",", " ", "0.96406682", " ", ",", " ", "0.97177861", " ", ",", " ",
"0.97150915", " ", ",", " ", "0.96679927"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr4", "=", " ",
RowBox[{"{",
RowBox[{
"0.88744171", " ", ",", " ", "0.96280448", " ", ",", " ", "0.96444435",
" ", ",", " ", "0.97202061", " ", ",", " ", "0.96375820", " ", ",", " ",
"0.96337055", " ", ",", " ", "0.95515560"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr5", " ", "=", " ",
RowBox[{"{",
RowBox[{
"0.88206844", " ", ",", " ", "0.95172720", " ", ",", " ", "0.95032873",
" ", ",", " ", "0.94916242", " ", ",", " ", "0.93761190", " ", ",", " ",
"0.93724699", " ", ",", " ", "0.93409742"}], " ", "}"}]}],
";"}]}], "Input",
CellChangeTimes->{{3.7615999584426937`*^9, 3.7616001049121356`*^9},
3.761600174015009*^9, {3.7616114752881527`*^9, 3.761611601184888*^9}, {
3.7616116983001633`*^9, 3.761611705713066*^9}},
CellLabel->"In[13]:=",ExpressionUUID->"de45a857-ac86-4f5a-b039-f1e3156f08f5"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"mat", " ", "=", " ",
RowBox[{"Transpose", " ", "[",
RowBox[{"{",
RowBox[{"arr1", ",", "arr2", ",", "arr3", ",", "arr4", ",", "arr5"}],
"}"}], "]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"MatrixPlot", "[", "mat", "]"}]}], "Input",
CellChangeTimes->{{3.7616001392174544`*^9, 3.761600152822781*^9}, {
3.761600404420597*^9, 3.761600409692638*^9}, {3.7616115814943476`*^9,
3.761611636458272*^9}},
CellLabel->"In[8]:=",ExpressionUUID->"8242ee5e-5b62-43f3-b772-863be6c0c7c8"],
Cell[BoxData[
GraphicsBox[RasterBox[CompressedData["
1:eJwBXQOi/CFib1JlAwAAAAcAAAAFAAAAAwAAAOzw9EU2ous/poq/DXZY4j8Y
j63TKyGiPzrm9/r+B+w/KqEtg+lh4T/5AT1ewEp5P6VZ+EqTY+8/nMBfcA4Y
3D+wn5kP2yZPP/N9CE8SoOw/OFh7ItjK4D+BLYRInIF1P6qgHPX7Cew/zyGw
HkUe5D/it+R6EXrCP22NyIYZOuw/3ljE8yMw4T/NGwzYcwt4P8kag4UFtes/
qkLgvLeq4j9g3kcnYD2sP+Q585P2nO8/S6wqjQqm2z9IcBCSGrlDP1QmhEcv
aO4/5G7HpYEL3j9Az8Xc0U1kP+g/LUhD9es/K7boG6fD4z/A4UgXgGK/PwkZ
FIFBa+w/20duWk//4D+kOJAmMdJ2P0xz2GmOj+s/9ejInuAG4j9AtwS9RjSQ
P2asuX+Bzu8/TIcwx5xD2z9wKHhgobYzP2BzBrQAy+4/vELOBy5H3T+IjHfk
qcReP0i7YFJo4us/rxoWNTJx4z/IvKYlQFG6P1TZRgA00uw/9m/DeQuZ4D9Y
HNA3IkJ0P5+fXqjhN+0/r/00SQo04D9H7TxqKbpxPywXAVad/O4/Z5OBEZ3k
3D+0LPJ1AdRZPwAAAAAAAPA/4XoUrkfh2j8AAAAAAAAAAIluO3EOyOs/ZtmL
ofX94j+gD0sfSjyzPzxEhlJ8me4/HrFrz46p3T80mi8PdNlhP8wAmLZyau0/
qAdnAM8B4D/QKpeo6XdwPwu4fQsoBO4/C0fIxzzS3j9vcx96u0hpPw7K1iJZ
Lu8/ZkM6L86B3D9YIwmKPuBUP1m1hew1ous/0Lyc6wXH4T9nop3IZ9N7P+KV
RdvY0e0/TGrUfDA23z+3rFV688lrPxn3oPN6Bu0/etCWMh1l4D+hZV/c+/Ry
PxfTEUPan+0/Luo/E4SZ3z+Q5K5EKEduP27cRTQeNu4/cWSW8/lu3j+c1rcy
8stmP5Fui3y/1es/tgWHxtOT4T+By+NZ+Ip6PwyaIxNLY+w//cefZdSk5T9V
vBlJT3rOP9mCdgrljOw/+NyMCMJa5j8kBZeoswjSP9EkKZKIO+w/fDkyhvT2
5D/ytROckSLJP9qyMJR4Tuw/wzRteMVJ5T/L76GgBa7LP+SQOBhLd+w/Xkeq
4kr85T/pxqRFKJXQP08DmT4=
"], {{0, 0}, {5, 7}}, {0, 1}],
Frame->True,
FrameLabel->{None, None},
FrameTicks->{{{{6.5,
FormBox["1", TraditionalForm]}, {5.5,
FormBox["2", TraditionalForm]}, {4.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {2.5,
FormBox["5", TraditionalForm]}, {1.5,
FormBox["6", TraditionalForm]}, {0.5,
FormBox["7", TraditionalForm]}}, {{6.5,
FormBox["1", TraditionalForm]}, {5.5,
FormBox["2", TraditionalForm]}, {4.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {2.5,
FormBox["5", TraditionalForm]}, {1.5,
FormBox["6", TraditionalForm]}, {0.5,
FormBox["7", TraditionalForm]}}}, {{{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}, {{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}}},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
Method->{
"AxisPadding" -> Scaled[0.02], "DefaultBoundaryStyle" -> Automatic,
"DefaultPlotStyle" -> Automatic, "DomainPadding" -> Scaled[0.02],
"RangePadding" -> Scaled[0.05]}]], "Output",
CellChangeTimes->{3.761611637353413*^9},
CellLabel->"Out[9]=",ExpressionUUID->"71bdf78b-712e-40a7-930a-86e65d9a2365"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"nc", " ", "=", " ", "7"}], ";"}], "\[IndentingNewLine]",
RowBox[{"yt", " ", "=", " ",
RowBox[{"Mean", " ", "[",
RowBox[{"mat", " ", "[",
RowBox[{"[", "nc", "]"}], "]"}], " ", "]"}]}], "\[IndentingNewLine]",
RowBox[{"del", " ", "=", " ",
RowBox[{
RowBox[{"StandardDeviation", " ", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}], "/",
RowBox[{"Sqrt", " ", "[",
RowBox[{"Length", " ", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}], "]"}]}]}]}], "Input",
CellChangeTimes->{{3.7616003634748063`*^9, 3.7616003837600174`*^9}, {
3.761600444834221*^9, 3.7616004758574505`*^9}, {3.761600512043132*^9,
3.7616005141459913`*^9}, {3.761600640035555*^9, 3.7616006445653095`*^9}, {
3.7616007859662685`*^9, 3.7616007899007373`*^9}, {3.761600831251912*^9,
3.7616008337039375`*^9}, {3.761600906023802*^9, 3.7616009088255234`*^9}, {
3.7616009854553585`*^9, 3.7616010151407795`*^9}, {3.761601137561076*^9,
3.761601147264677*^9}, {3.7616012181665716`*^9, 3.761601220272669*^9}, {
3.7616115815099387`*^9, 3.7616115902590427`*^9}, {3.761611647897711*^9,
3.7616117248180513`*^9}, {3.7616118382724037`*^9, 3.7616118386323423`*^9}, {
3.7616118753067217`*^9, 3.7616119621860332`*^9}, {3.7616119935046215`*^9,
3.7616119943068514`*^9}},
NumberMarks->False,
CellLabel->"In[42]:=",ExpressionUUID->"6ed5952f-0500-466e-a8e0-db48c1cafb22"],
Cell[BoxData["0.9517080139999999`"], "Output",
CellChangeTimes->{
3.761600196904907*^9, {3.761600367156971*^9, 3.7616003840631723`*^9},
3.761600417247177*^9, {3.761600447287475*^9, 3.761600477270297*^9},
3.7616005148939905`*^9, 3.7616006451156206`*^9, 3.761600791640889*^9,
3.761600834060937*^9, 3.761600909440611*^9, {3.7616009859724183`*^9,
3.7616010154170723`*^9}, {3.761601141864626*^9, 3.7616011479629335`*^9},
3.7616012206398506`*^9, 3.7616116909738927`*^9, 3.7616117254297523`*^9,
3.761611839021474*^9, {3.7616118773832197`*^9, 3.761611962680603*^9},
3.76161199475704*^9},
CellLabel->"Out[43]=",ExpressionUUID->"ddbe6405-2ac7-4a39-8099-05c35c46faab"],
Cell[BoxData["0.005257613309158068`"], "Output",
CellChangeTimes->{
3.761600196904907*^9, {3.761600367156971*^9, 3.7616003840631723`*^9},
3.761600417247177*^9, {3.761600447287475*^9, 3.761600477270297*^9},
3.7616005148939905`*^9, 3.7616006451156206`*^9, 3.761600791640889*^9,
3.761600834060937*^9, 3.761600909440611*^9, {3.7616009859724183`*^9,
3.7616010154170723`*^9}, {3.761601141864626*^9, 3.7616011479629335`*^9},
3.7616012206398506`*^9, 3.7616116909738927`*^9, 3.7616117254297523`*^9,
3.761611839021474*^9, {3.7616118773832197`*^9, 3.761611962680603*^9},
3.761611994772661*^9},
CellLabel->"Out[44]=",ExpressionUUID->"ee79d331-800e-49d7-b239-e08b3df8113a"]
}, Open ]],
Cell[BoxData[{
RowBox[{
RowBox[{"arr1", "=",
RowBox[{"{",
RowBox[{
"1.87765942", " ", ",", " ", "1.88054218", " ", ",", " ", "1.88029513",
" ", ",", " ", "1.88086406"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr2", "=", " ",
RowBox[{"{",
RowBox[{
"1.87533767", " ", ",", " ", "1.87813396", " ", ",", " ", "1.87811169",
" ", ",", " ", "1.87850202"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr3", " ", "=", " ",
RowBox[{"{",
RowBox[{
"1.87761463", " ", ",", " ", "1.88022681", " ", ",", " ", "1.88029060",
" ", ",", " ", "1.88067705"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr4", "=",
RowBox[{"{",
RowBox[{
"1.87754434", " ", ",", " ", "1.88028642", " ", ",", " ", "1.88028563",
" ", ",", " ", "1.88071465"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr5", " ", "=",
RowBox[{"{",
RowBox[{
"1.87493716", " ", ",", " ", "1.87759122", " ", ",", " ", "1.87771956",
" ", ",", " ", "1.87812502"}], " ", "}"}]}], ";"}]}], "Input",
CellChangeTimes->{{3.761600001718884*^9, 3.761600002844644*^9}, {
3.761601635188143*^9, 3.7616016577403727`*^9}, {3.761612072898636*^9,
3.761612204384699*^9}},
CellLabel->"In[65]:=",ExpressionUUID->"a8856619-1e42-4c7e-a9f1-4b4ea21c0a6b"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"mat", " ", "=", " ",
RowBox[{"Transpose", " ", "[",
RowBox[{"{",
RowBox[{"arr1", ",", "arr2", ",", "arr3", ",", "arr4", ",", "arr5"}],
"}"}], "]"}]}], "\[IndentingNewLine]",
RowBox[{"MatrixPlot", "[", "mat", "]"}]}], "Input",
CellChangeTimes->{{3.761611581553048*^9, 3.761611590277069*^9}, {
3.7616121868660326`*^9, 3.7616122182438564`*^9}, 3.7616122939697976`*^9},
CellLabel->"In[70]:=",ExpressionUUID->"8b6978aa-73bf-49f2-82c4-cfdae7a2994f"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
"1.87765942`", ",", "1.87533767`", ",", "1.87761463`", ",", "1.87754434`",
",", "1.87493716`"}], "}"}], ",",
RowBox[{"{",
RowBox[{
"1.88054218`", ",", "1.87813396`", ",", "1.88022681`", ",", "1.88028642`",
",", "1.87759122`"}], "}"}], ",",
RowBox[{"{",
RowBox[{
"1.88029513`", ",", "1.87811169`", ",", "1.8802906`", ",", "1.88028563`",
",", "1.87771956`"}], "}"}], ",",
RowBox[{"{",
RowBox[{
"1.88086406`", ",", "1.87850202`", ",", "1.88067705`", ",", "1.88071465`",
",", "1.87812502`"}], "}"}]}], "}"}]], "Output",
CellChangeTimes->{{3.7616122153364787`*^9, 3.7616122188174133`*^9}, {
3.7616122735663033`*^9, 3.761612300178257*^9}},
CellLabel->"Out[70]=",ExpressionUUID->"9c1db1f2-4b91-4fa2-a83e-0f6d08532039"],
Cell[BoxData[
GraphicsBox[RasterBox[CompressedData["
1:eJwB9QEK/iFib1JlAwAAAAQAAAAFAAAAAwAAAAAAAAAAAPA/4XoUrkfh2j8A
AAAAAAAAAJvC0WgL+ew/Ex4+83Vy4D+bx40+m0pzP+yqA6AYVO8/O0VSQ882
3D+MIVUVAh5RP0TLxD7/qe8/Pg/ZbiWM2z/Il5hInCBBPzWaOqD3TOw/d2Uk
22Ud4T9jSkzFNpN3P7R2BbEDqO4/TDAGXLGM3T8KEHjARiBhP6GZva0W9+s/
nDa8IrVy4T9dTZyaf7Z5P+hOG80kUu4/i3oK1Us33j/+M6MzvmZlPyCvA/pn
pu0/i+7X4H6M3z+TLazqoPNtP3/IpjDdoOs/XLq+XlzI4T8ixcWw/Nt7P2yH
00Qb/u4/j0CIQ6bh3D8cOFGX+a1ZP8RdB4zXouw/yz5/mBfI4D+wSQl69G91
P/jff2V8UO0/IXwBSJkb4D8y4HkNXR1xPzChIv5F/O0/7NxyJObh3j9Rg9+b
NK1pP3UjMvEX3+s/g3IRI7Ri4z/wokpwP225PzzhtKPunes/ROW3tb5F4j8Q
As4/iKifP5CqC/4CIew/ggaj2PiC5D+MKeRXN5LFP/UcEz2Evus/0X9qkT3U
4j94Y6v08auwP+rM/7mt/+s/S8k0zjPx4z+QkkgKjhfBP5MT8SC4Qew/f2Ti
ngES5T+IxYUsXPfJP4SM6l0=
"], {{0, 0}, {5, 4}}, {0, 1}],
Frame->True,
FrameLabel->{None, None},
FrameTicks->{{{{3.5,
FormBox["1", TraditionalForm]}, {2.5,
FormBox["2", TraditionalForm]}, {1.5,
FormBox["3", TraditionalForm]}, {0.5,
FormBox["4", TraditionalForm]}}, {{3.5,
FormBox["1", TraditionalForm]}, {2.5,
FormBox["2", TraditionalForm]}, {1.5,
FormBox["3", TraditionalForm]}, {0.5,
FormBox["4", TraditionalForm]}}}, {{{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}, {{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}}},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
Method->{
"AxisPadding" -> Scaled[0.02], "DefaultBoundaryStyle" -> Automatic,
"DefaultPlotStyle" -> Automatic, "DomainPadding" -> Scaled[0.02],
"RangePadding" -> Scaled[0.05]}]], "Output",
CellChangeTimes->{{3.7616122153364787`*^9, 3.7616122188174133`*^9}, {
3.7616122735663033`*^9, 3.7616123002652864`*^9}},
CellLabel->"Out[71]=",ExpressionUUID->"9733dc10-8c08-410b-b135-7ace9a15e64b"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"nc", " ", "=", " ", "4"}], ";"}], "\[IndentingNewLine]",
RowBox[{"yh", " ", "=", " ",
RowBox[{"Mean", " ", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}]}], "\[IndentingNewLine]",
RowBox[{"del", " ", "=", " ",
RowBox[{
RowBox[{"StandardDeviation", " ", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}], "/",
RowBox[{"Sqrt", " ", "[",
RowBox[{"Length", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}], "]"}]}]}]}], "Input",
CellChangeTimes->{{3.761612252210396*^9, 3.761612288088092*^9},
3.761612430197147*^9, {3.761612462263994*^9, 3.761612485342642*^9}},
CellLabel->"In[81]:=",ExpressionUUID->"af36e47e-1fbb-45b5-99fa-5551dcb931c9"],
Cell[BoxData["1.8797765600000003`"], "Output",
CellChangeTimes->{{3.7616122531510077`*^9, 3.7616123052944107`*^9},
3.761612432109768*^9, {3.761612463134947*^9, 3.761612486103676*^9}},
CellLabel->"Out[82]=",ExpressionUUID->"6b9c0d3b-b2f7-4014-ba1e-0394ebf9cff4"],
Cell[BoxData["0.0006010652178175164`"], "Output",
CellChangeTimes->{{3.7616122531510077`*^9, 3.7616123052944107`*^9},
3.761612432109768*^9, {3.761612463134947*^9, 3.761612486103676*^9}},
CellLabel->"Out[83]=",ExpressionUUID->"dd9de742-07cd-4109-87fb-819fc6428e3f"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["L = 16", "Section",
CellChangeTimes->{{3.761614029440499*^9, 3.7616140301906824`*^9}, {
3.7616141730153627`*^9,
3.761614173543925*^9}},ExpressionUUID->"afec5c9d-fc24-4fe1-80eb-\
9633976728a6"],
Cell[BoxData[{
RowBox[{
RowBox[{"arr1", "=", " ",
RowBox[{"{",
RowBox[{
"0.89262866", " ", ",", " ", "0.96192206", " ", ",", " ", "0.96493667",
" ", ",", " ", "0.96170257", " ", ",", "\n", "0.96254467", " ", ",", " ",
"0.96315375", " ", ",", " ", "0.96723818"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr2", " ", "=", " ",
RowBox[{"{",
RowBox[{
"0.89409304", " ", ",", " ", "0.96758456", " ", ",", " ", "0.96968328",
" ", ",", " ", "0.97118777", " ", ",", "\n", "0.96920395", " ", ",", " ",
"0.96989363", " ", ",", " ", "0.97216323"}], "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr3", " ", "=", " ",
RowBox[{"{",
RowBox[{
"0.90399984", " ", ",", " ", "0.96866047", " ", ",", " ", "0.96820560",
" ", ",", " ", "0.96984515", " ", ",", "\n", "0.96754336", " ", ",", " ",
"0.96797376", " ", ",", " ", "0.96060233"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr4", "=", " ",
RowBox[{"{",
RowBox[{
"0.90428091", " ", ",", " ", "0.97120973", " ", ",", " ", "0.97314167",
" ", ",", " ", "0.96596483", " ", ",", "\n", "0.96445120", " ", ",", " ",
"0.96501503", " ", ",", " ", "0.95947154"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr5", " ", "=", " ",
RowBox[{"{",
RowBox[{
"0.89792112", " ", ",", " ", "0.96987178", " ", ",", " ", "0.97074226",
" ", ",", " ", "0.97037637", " ", ",", "\n", "0.97163561", " ", ",", " ",
"0.97169226", " ", ",", " ", "0.97603943"}], "}"}]}], ";"}]}], "Input",
CellChangeTimes->{{3.7615999584426937`*^9, 3.7616001049121356`*^9},
3.761600174015009*^9, {3.7616114752881527`*^9, 3.761611601184888*^9}, {
3.7616116983001633`*^9, 3.761611705713066*^9}, {3.7616143265357666`*^9,
3.761614367323871*^9}, {3.761614426542528*^9, 3.761614437927927*^9}},
CellLabel->"In[84]:=",ExpressionUUID->"2d19e3e3-8fa8-4b6f-b860-e29cfde42484"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"mat", " ", "=", " ",
RowBox[{"Transpose", " ", "[",
RowBox[{"{",
RowBox[{"arr1", ",", "arr2", ",", "arr3", ",", "arr4", ",", "arr5"}],
"}"}], "]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"MatrixPlot", "[", "mat", "]"}]}], "Input",
CellChangeTimes->{{3.7616001392174544`*^9, 3.761600152822781*^9}, {
3.761600404420597*^9, 3.761600409692638*^9}, {3.7616115814943476`*^9,
3.761611636458272*^9}},
CellLabel->"In[89]:=",ExpressionUUID->"e94b3ffd-8105-4a14-b84b-259f9ed17516"],
Cell[BoxData[
GraphicsBox[RasterBox[CompressedData["
1:eJwtkn1QkwUAhxe4UvxD5SMtZJxLxZOpt2PoIcGPUxDKzalnAoJrFWBfIExc
+mIIdiJbxaEonCG0LHED5CNocM04RnOdMO42QhEY+2AfTd53GxWseQZEXc/d
c/f8/v9tevf00dxAGo320rL0Zf/tmpBWLbgU5vZPXNjIsIK5YTpvsO4TyEbW
zq2u86J0S++PQ52TcAlu8H5yJuMOsW/rfheJSyFqjU5qg1A8/OsauwrBseu6
ZM9JlLKvqi+YbagiWGzOF/2g/ccsrERoW6p14v9Noz0xJOkjbpG4k9Tx13DC
NISTL/SOdTcgIjn3rdp4D8SBW7AxxwSB84n+9Yo8WG6sTuyzUFAcbnbclFpQ
xu/bd95xBuweJZ/jJNGbtG2K+MwKXwpBf4VJQOlTaLbmepHdd/8RFWqEkCcL
Kn98CE2m+HhmO4nqZ2nR/uppnFNNZHJCFEgiR0vDxW4cED5dOEOZEfpbwolb
OwpBWMfTJj6lwD7pjHhMWRBA+3n0XpYYSgFv8NtKEuJWifgblxW0hwspXZJy
PEsUcf6O8UKuLImuFxtRuS6T8+XhY1ixst4wM0rieXV4fcxuGzbvnMlmdCpB
v4ictQYP2Br+ntfip6CroquitgtwVppxSjDuBl/+1JUYZYYrgxKEffgR3js9
y/p9AwVqXL4m9IgVrEhu2IDpHCrrFg1l+R5wv+upn6WZwPDl8lcG5SC1gOFf
6iahDh7py+q2Qq9VXGrOKoExPU60Qu5Ggb391EGJGXatXLvenI8Wel7PnmA3
PueVpxdnWnA3YT52V7MIY6s0PY8eevFVq6TUzp1Ev56513UtFnvv3W7d/bUH
WsVdyY7GKTR33bwtqn4HMql/ftsACZaum2DZp8HljxQ3NHXi5cBK20IbheuN
A0b6fQt4m44EXGGeRYOK3xSW7EYFa9fiTJQFkUtvzOd8XAT50Mlj0QFetLWr
qZpxIzJ2/nDigwOZ+H69r6gkyINXzRcLWx6YMKg5/na4/30IvUT6m5cpzC6q
zWVxTlheNB91XTbgfEeNrqto+ectsqYxmwO1hMa1wNGj5vqc1JRCYahwpCNq
swO+yQfHIysGoWPRtwfHUGCoUqv+MNhRe8jmL176Bf5+Ub4km0LjKkNB2hUH
plR/xtmuDuMf7m+r8g==
"], {{0, 0}, {5, 7}}, {0, 1}],
Frame->True,
FrameLabel->{None, None},
FrameTicks->{{{{6.5,
FormBox["1", TraditionalForm]}, {5.5,
FormBox["2", TraditionalForm]}, {4.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {2.5,
FormBox["5", TraditionalForm]}, {1.5,
FormBox["6", TraditionalForm]}, {0.5,
FormBox["7", TraditionalForm]}}, {{6.5,
FormBox["1", TraditionalForm]}, {5.5,
FormBox["2", TraditionalForm]}, {4.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {2.5,
FormBox["5", TraditionalForm]}, {1.5,
FormBox["6", TraditionalForm]}, {0.5,
FormBox["7", TraditionalForm]}}}, {{{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}, {{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}}},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
Method->{
"AxisPadding" -> Scaled[0.02], "DefaultBoundaryStyle" -> Automatic,
"DefaultPlotStyle" -> Automatic, "DomainPadding" -> Scaled[0.02],
"RangePadding" -> Scaled[0.05]}]], "Output",
CellChangeTimes->{3.761611637353413*^9, 3.7616144426038356`*^9},
CellLabel->"Out[90]=",ExpressionUUID->"98f7a94b-34ea-4069-95ba-4c2d5aa4e73b"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"nc", " ", "=", " ", "7"}], ";"}], "\[IndentingNewLine]",
RowBox[{"yt", " ", "=", " ",
RowBox[{"Mean", " ", "[",
RowBox[{"mat", " ", "[",
RowBox[{"[", "nc", "]"}], "]"}], " ", "]"}]}], "\[IndentingNewLine]",
RowBox[{"del", " ", "=", " ",
RowBox[{
RowBox[{"StandardDeviation", " ", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}], "/",
RowBox[{"Sqrt", " ", "[",
RowBox[{"Length", " ", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}], "]"}]}]}]}], "Input",
CellChangeTimes->{{3.7616003634748063`*^9, 3.7616003837600174`*^9}, {
3.761600444834221*^9, 3.7616004758574505`*^9}, {3.761600512043132*^9,
3.7616005141459913`*^9}, {3.761600640035555*^9, 3.7616006445653095`*^9}, {
3.7616007859662685`*^9, 3.7616007899007373`*^9}, {3.761600831251912*^9,
3.7616008337039375`*^9}, {3.761600906023802*^9, 3.7616009088255234`*^9}, {
3.7616009854553585`*^9, 3.7616010151407795`*^9}, {3.761601137561076*^9,
3.761601147264677*^9}, {3.7616012181665716`*^9, 3.761601220272669*^9}, {
3.7616115815099387`*^9, 3.7616115902590427`*^9}, {3.761611647897711*^9,
3.7616117248180513`*^9}, {3.7616118382724037`*^9, 3.7616118386323423`*^9}, {
3.7616118753067217`*^9, 3.7616119621860332`*^9}, {3.7616119935046215`*^9,
3.7616119943068514`*^9}, {3.7616144456709003`*^9, 3.761614447014696*^9}, {
3.7616145118721066`*^9, 3.7616145248490143`*^9}, {3.7616145738179817`*^9,
3.7616146154924088`*^9}},
NumberMarks->False,
CellLabel->
"In[109]:=",ExpressionUUID->"63527858-6297-4232-a171-61c1db5fae31"],
Cell[BoxData["0.967102942`"], "Output",
CellChangeTimes->{
3.761600196904907*^9, {3.761600367156971*^9, 3.7616003840631723`*^9},
3.761600417247177*^9, {3.761600447287475*^9, 3.761600477270297*^9},
3.7616005148939905`*^9, 3.7616006451156206`*^9, 3.761600791640889*^9,
3.761600834060937*^9, 3.761600909440611*^9, {3.7616009859724183`*^9,
3.7616010154170723`*^9}, {3.761601141864626*^9, 3.7616011479629335`*^9},
3.7616012206398506`*^9, 3.7616116909738927`*^9, 3.7616117254297523`*^9,
3.761611839021474*^9, {3.7616118773832197`*^9, 3.761611962680603*^9},
3.76161199475704*^9, 3.761614447436407*^9, {3.761614512461754*^9,
3.761614525398944*^9}, {3.76161457437449*^9, 3.7616146159611425`*^9}},
CellLabel->
"Out[110]=",ExpressionUUID->"ce6ccae5-ac01-4445-82eb-0dd967c758ce"],
Cell[BoxData["0.003209220112378408`"], "Output",
CellChangeTimes->{
3.761600196904907*^9, {3.761600367156971*^9, 3.7616003840631723`*^9},
3.761600417247177*^9, {3.761600447287475*^9, 3.761600477270297*^9},
3.7616005148939905`*^9, 3.7616006451156206`*^9, 3.761600791640889*^9,
3.761600834060937*^9, 3.761600909440611*^9, {3.7616009859724183`*^9,
3.7616010154170723`*^9}, {3.761601141864626*^9, 3.7616011479629335`*^9},
3.7616012206398506`*^9, 3.7616116909738927`*^9, 3.7616117254297523`*^9,
3.761611839021474*^9, {3.7616118773832197`*^9, 3.761611962680603*^9},
3.76161199475704*^9, 3.761614447436407*^9, {3.761614512461754*^9,
3.761614525398944*^9}, {3.76161457437449*^9, 3.7616146159767714`*^9}},
CellLabel->
"Out[111]=",ExpressionUUID->"4203c789-fdde-4b6f-95d7-a34802adc715"]
}, Open ]],
Cell[BoxData[{
RowBox[{
RowBox[{"arr1", "=",
RowBox[{"{",
RowBox[{
"1.87875847", " ", ",", " ", "1.87921592", " ", ",", " ", "1.87912359",
" ", ",", " ", "1.87955192"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr2", "=", " ",
RowBox[{"{",
RowBox[{
"1.87970812", " ", ",", " ", "1.88028924", " ", ",", " ", "1.88035129",
" ", ",", " ", "1.88091948"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr3", " ", "=", " ",
RowBox[{"{",
RowBox[{
"1.87932635", " ", ",", " ", "1.87969838", " ", ",", " ", "1.87960192",
" ", ",", " ", "1.87989484"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr4", "=",
RowBox[{"{",
RowBox[{
"1.87985942", " ", ",", " ", "1.88017935", " ", ",", " ", "1.88012371",
" ", ",", " ", "1.88066414"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr5", " ", "=",
RowBox[{"{",
RowBox[{
"1.88006567", " ", ",", " ", "1.88057298", " ", ",", " ", "1.88058059",
" ", ",", " ", "1.88095520"}], " ", "}"}]}], ";"}]}], "Input",
CellChangeTimes->{{3.761600001718884*^9, 3.761600002844644*^9}, {
3.761601635188143*^9, 3.7616016577403727`*^9}, {3.761612072898636*^9,
3.761612204384699*^9}, {3.761614377062617*^9, 3.761614426709996*^9}, {
3.761614633161831*^9, 3.76161464037823*^9}},
CellLabel->
"In[112]:=",ExpressionUUID->"d7560481-ad84-4ff0-b0e4-ff93c9ccc222"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"mat", " ", "=", " ",
RowBox[{"Transpose", " ", "[",
RowBox[{"{",
RowBox[{"arr1", ",", "arr2", ",", "arr3", ",", "arr4", ",", "arr5"}],
"}"}], "]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"MatrixPlot", "[", "mat", "]"}]}], "Input",
CellChangeTimes->{{3.761611581553048*^9, 3.761611590277069*^9}, {
3.7616121868660326`*^9, 3.7616122182438564`*^9}, 3.7616122939697976`*^9,
3.7616146454844494`*^9},
CellLabel->
"In[117]:=",ExpressionUUID->"1389804c-7c12-4137-b7d6-7501e9eda787"],
Cell[BoxData[
GraphicsBox[RasterBox[CompressedData["
1:eJwB9QEK/iFib1JlAwAAAAQAAAAFAAAAAwAAAHiTwY7gves//3hTxXHR4j/0
4rur9H+wPzct2NEZqu8/xxDZovCL2z9QVot1URtBP7F729hdpOw/5i2y4ZPG
4D9zo+EvPWZ1Pxk6uU4AVO8/rnVok/823D/I74P2bSBRPwAAAAAAAPA/4XoU
rkfh2j8AAAAAAAAAAKKkMWq7H+w/lBH/TmB95D/+0pCjMmbFP/QRy7AdUu4/
EbiL9Vk33j/YS3zUGGdlP18AMn9Knes/P7nB5PBC4j8QdVANFPiePxaS/gBP
UO0/3RKEX8Yb4D+aEzBUfh5xP7XLqPIO/u4/zIMRvr7h3D8oClaqM69ZP4X6
8Zkh/+s/bPo3Bc/u4z9Qy5e3uQTBP4eLLlsx/O0/piBZJA/i3j8lueGhO65p
P0LFH2+Wous/awu2DKbG4T/KcVO/ANF7PwU8ENc5pu0/xFQ7itqM3z9bsm3z
7PVtP9pKd1YvqO4/ZVozpVqM3T8irRB1Gh5hP8Bod2ltQOw/qqrlWlsM5T9m
WHR768rJP/gbxIp2+Os/8neKmldx4T9mkC1Dva15P+DU6S6G3us/Q+sItzZg
4z9grkQxE0a5Pxz9prx3Tuw/P5c/Sugb4T9jHi7spol3P4VGUptj+uw/JoiR
CCBx4D/NzNDBCUJzP2NV7EM=
"], {{0, 0}, {5, 4}}, {0, 1}],
Frame->True,
FrameLabel->{None, None},
FrameTicks->{{{{3.5,
FormBox["1", TraditionalForm]}, {2.5,
FormBox["2", TraditionalForm]}, {1.5,
FormBox["3", TraditionalForm]}, {0.5,
FormBox["4", TraditionalForm]}}, {{3.5,
FormBox["1", TraditionalForm]}, {2.5,
FormBox["2", TraditionalForm]}, {1.5,
FormBox["3", TraditionalForm]}, {0.5,
FormBox["4", TraditionalForm]}}}, {{{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}, {{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}}},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
Method->{
"AxisPadding" -> Scaled[0.02], "DefaultBoundaryStyle" -> Automatic,
"DefaultPlotStyle" -> Automatic, "DomainPadding" -> Scaled[0.02],
"RangePadding" -> Scaled[0.05]}]], "Output",
CellChangeTimes->{{3.7616122153364787`*^9, 3.7616122188174133`*^9}, {
3.7616122735663033`*^9, 3.761612300178257*^9}, 3.761614645995185*^9},
CellLabel->
"Out[118]=",ExpressionUUID->"03ce5d62-42e7-42cb-8873-7ce866c5702e"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"nc", " ", "=", " ", "4"}], ";"}], "\[IndentingNewLine]",
RowBox[{"yh", " ", "=", " ",
RowBox[{"Mean", " ", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}]}], "\[IndentingNewLine]",
RowBox[{"del", " ", "=", " ",
RowBox[{
RowBox[{"StandardDeviation", " ", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}], "/",
RowBox[{"Sqrt", " ", "[",
RowBox[{"Length", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}], "]"}]}]}]}], "Input",
CellChangeTimes->{{3.761612252210396*^9, 3.761612288088092*^9},
3.761612430197147*^9, {3.761612462263994*^9, 3.761612485342642*^9}, {
3.7616146568018913`*^9, 3.7616146818442383`*^9}, {3.761614733428216*^9,
3.7616147515467834`*^9}},
CellLabel->
"In[134]:=",ExpressionUUID->"851f6f70-5e33-4e56-9506-c8697da846e9"],
Cell[BoxData["1.8803971160000004`"], "Output",
CellChangeTimes->{
3.7616146823877664`*^9, {3.7616147341356697`*^9, 3.7616147519216566`*^9}},
CellLabel->
"Out[135]=",ExpressionUUID->"b34ffb37-b74d-452b-bc43-e88023d99537"],
Cell[BoxData["0.0002848035441071751`"], "Output",
CellChangeTimes->{
3.7616146823877664`*^9, {3.7616147341356697`*^9, 3.761614751937278*^9}},
CellLabel->
"Out[136]=",ExpressionUUID->"1160e6c6-83ee-4bf7-aa09-74d0f945f928"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["L = 32", "Section",
CellChangeTimes->{{3.761664117813526*^9,
3.7616641188600206`*^9}},ExpressionUUID->"316e41f1-8ad3-40f7-a758-\
9e82a9192d58"],
Cell[BoxData[{
RowBox[{
RowBox[{"arr1", "=", " ",
RowBox[{"{",
RowBox[{
"0.89934707", " ", ",", " ", "0.95947273", " ", ",", " ", "0.96131469",
" ", ",", " ", "0.96164955", " ", ",", "\n", "0.95864251", " ", ",", " ",
"0.95900584", " ", ",", " ", "0.95483984"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr2", " ", "=", " ",
RowBox[{"{",
RowBox[{
"0.90363503", " ", ",", " ", "0.96709293", " ", ",", " ", "0.97071598",
" ", ",", " ", "0.97493401", " ", ",", "\n", "0.97561736", " ", ",", " ",
"0.97519216", " ", ",", " ", "0.97465846"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr3", " ", "=", " ",
RowBox[{"{",
RowBox[{
"0.90253311", " ", ",", " ", "0.96520957", " ", ",", " ", "0.96580112",
" ", ",", " ", "0.96778985", " ", ",", "\n", "0.96802672", " ", ",", " ",
"0.96822471", " ", ",", " ", "0.96894679"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr4", "=", " ",
RowBox[{"{",
RowBox[{
"0.89978845", " ", ",", " ", "0.96270514", " ", ",", " ", "0.96444774",
" ", ",", " ", "0.96286073", " ", ",", "\n", "0.96285734", " ", ",", " ",
"0.96276462", " ", ",", " ", "0.96483915"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr5", " ", "=", " ",
RowBox[{"{",
RowBox[{
"0.90363849", " ", ",", " ", "0.96210343", " ", ",", " ", "0.96278381",
" ", ",", " ", "0.96161208", " ", ",", "\n", "0.96197890", " ", ",", " ",
"0.96287780", " ", ",", " ", "0.96216075"}], " ", "}"}]}],
";"}]}], "Input",
CellChangeTimes->{{3.7615999584426937`*^9, 3.7616001049121356`*^9},
3.761600174015009*^9, {3.7616114752881527`*^9, 3.761611601184888*^9}, {
3.7616116983001633`*^9, 3.761611705713066*^9}, {3.7616143265357666`*^9,
3.761614367323871*^9}, {3.761614426542528*^9, 3.761614437927927*^9}, {
3.7616641504954042`*^9, 3.7616642047833138`*^9}, {3.7616642598991385`*^9,
3.7616642714911675`*^9}},
CellLabel->"In[1]:=",ExpressionUUID->"e154cec7-82f0-4be3-bafd-f98095a87938"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"mat", " ", "=", " ",
RowBox[{"Transpose", " ", "[",
RowBox[{"{",
RowBox[{"arr1", ",", "arr2", ",", "arr3", ",", "arr4", ",", "arr5"}],
"}"}], "]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"MatrixPlot", "[", "mat", "]"}]}], "Input",
CellChangeTimes->{{3.7616001392174544`*^9, 3.761600152822781*^9}, {
3.761600404420597*^9, 3.761600409692638*^9}, {3.7616115814943476`*^9,
3.761611636458272*^9}},
CellLabel->"In[6]:=",ExpressionUUID->"c8a06c38-bfe0-439d-b737-6b1338c582e9"],
Cell[BoxData[
GraphicsBox[RasterBox[CompressedData["
1:eJwtjX1QkwUAxjfZRM7gxEEKeAhDPUg4ZDOtgTyH4IS0DxhxzWMI1pCPwm0p
bhTcrOFI6NhEYwru1FuTnQlcSh9Xh+kodkQi1Pgc2142rHz3YYQLG2DU9dz9
7p7fP88Te+RYnjCAQqEErkBf4d++Q7LtmHiZxKp9H2kHSQdqlhcag93fQUsM
3NlU6cUNNcLCgyyIR6/3ov5lOBdiJlzLHijO/krQ7RbESNwpURf42CUpredc
doNbHGfu09iwxOEKBXurIOpVsvzrXUj/+ab7aQEBQR2vv5cmww+nzQbRKAnN
qQCJJc2BNXcYRkfEl6i7Es1PvueF/PUvlpA1hWIlc5g/xkZfX3rFJ4MeRITf
8gdmTWMxtNuW2V4Ef4++LKnaBeOb3Ccn5u2oPpymaG2qRhX1a42O44bM7Qs8
mGLHlaNBmaoOMbptFZsP/E4im8uMf7XZAV3RcVC3fwvKf3kEoiascz8x+b9T
KOfXZWxLbPMgpc5p36mfxly+jDVvLAHtg6vZsnEX/u7K+eX+WTs4jIPMxMjj
uJTUEK/sJrHa07Iw+BUBQ9vG6Oek7+Gh/JAg9czKrzN7tNVLwJ6q/GvxsQKM
p+FPDO1e+JLpt6/qp9AxSgkuNGVig4Qh6C734GQi/bxijRVMS4LxU85byN2t
nWoMciND/Lg29Igdmp6EMTEhwWLl3RhrOwnT9Tb/sxkzuIyA0XMfasETRube
6CJxtH1X2RstM5DflKl9AgOo5kJmFNuLkKHo/ENSC+TR12p9pfngsyciQmge
FO4I4YlGrMhJK9i6+qVyENrTG2VVbjTfLndq/TasGtdxM4tE+LgxN3L/NRcE
HQWqLqMdtb+pJ7p4JzDZ4JYrjCTKzRO8TQ9n0Hfmeg2N9jkGBnRZwt0ePJou
jhe9bUXFg36N4ZtSSFW29+eG3Xgm+Jxq6XkbEppyfvzMVAnFrbhm6j4XGJf2
Vr6ylcC449TM3PcnERXKyrtPkFg4nFA2piSQN6T/g5Feg6WqF0Ka5C742FT9
3S0PMLJB2ZC3cxjS+dawyZUdUhybFLZlFlnTQnN9/QBs21v6WXwXShKz/+yU
zoJX3bNn7eafoFYpMnTvuGAi4i6Ej8xira6k4oB1CCms12L3sF1Yl6x+t3PE
CdWL96ipdBP+ASrGl9Q=
"], {{0, 0}, {5, 7}}, {0, 1}],
Frame->True,
FrameLabel->{None, None},
FrameTicks->{{{{6.5,
FormBox["1", TraditionalForm]}, {5.5,
FormBox["2", TraditionalForm]}, {4.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {2.5,
FormBox["5", TraditionalForm]}, {1.5,
FormBox["6", TraditionalForm]}, {0.5,
FormBox["7", TraditionalForm]}}, {{6.5,
FormBox["1", TraditionalForm]}, {5.5,
FormBox["2", TraditionalForm]}, {4.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {2.5,
FormBox["5", TraditionalForm]}, {1.5,
FormBox["6", TraditionalForm]}, {0.5,
FormBox["7", TraditionalForm]}}}, {{{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}, {{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}}},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
Method->{
"AxisPadding" -> Scaled[0.02], "DefaultBoundaryStyle" -> Automatic,
"DefaultPlotStyle" -> Automatic, "DomainPadding" -> Scaled[0.02],
"RangePadding" -> Scaled[0.05]}]], "Output",
CellChangeTimes->{3.761611637353413*^9, 3.7616144426038356`*^9,
3.7616642772987537`*^9},
CellLabel->"Out[7]=",ExpressionUUID->"e5d80c18-04f1-49c1-88ff-887d0a73b4db"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"nc", " ", "=", "7"}], ";"}], "\[IndentingNewLine]",
RowBox[{"yt", " ", "=", " ",
RowBox[{"Mean", " ", "[",
RowBox[{"mat", " ", "[",
RowBox[{"[", "nc", "]"}], "]"}], " ", "]"}]}], "\[IndentingNewLine]",
RowBox[{"del", " ", "=", " ",
RowBox[{
RowBox[{"StandardDeviation", " ", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}], "/",
RowBox[{"Sqrt", " ", "[",
RowBox[{"Length", " ", "[",
RowBox[{"mat", "[",
RowBox[{"[", "nc", "]"}], "]"}], "]"}], "]"}]}]}]}], "Input",
CellChangeTimes->{{3.7616003634748063`*^9, 3.7616003837600174`*^9}, {
3.761600444834221*^9, 3.7616004758574505`*^9}, {3.761600512043132*^9,
3.7616005141459913`*^9}, {3.761600640035555*^9, 3.7616006445653095`*^9}, {
3.7616007859662685`*^9, 3.7616007899007373`*^9}, {3.761600831251912*^9,
3.7616008337039375`*^9}, {3.761600906023802*^9, 3.7616009088255234`*^9}, {
3.7616009854553585`*^9, 3.7616010151407795`*^9}, {3.761601137561076*^9,
3.761601147264677*^9}, {3.7616012181665716`*^9, 3.761601220272669*^9}, {
3.7616115815099387`*^9, 3.7616115902590427`*^9}, {3.761611647897711*^9,
3.7616117248180513`*^9}, {3.7616118382724037`*^9,
3.7616118386323423`*^9}, {3.7616118753067217`*^9,
3.7616119621860332`*^9}, {3.7616119935046215`*^9,
3.7616119943068514`*^9}, {3.7616144456709003`*^9, 3.761614447014696*^9}, {
3.7616145118721066`*^9, 3.7616145248490143`*^9}, {3.7616145738179817`*^9,
3.7616146154924088`*^9}, 3.76166428579731*^9, {3.7616643441103773`*^9,
3.761664378167465*^9}, {3.761664418784094*^9, 3.761664446389061*^9}},
NumberMarks->False,
CellLabel->"In[32]:=",ExpressionUUID->"8ff3cb47-7bde-47e9-9688-7b4b9a49bdfa"],
Cell[BoxData["0.965088998`"], "Output",
CellChangeTimes->{
3.761600196904907*^9, {3.761600367156971*^9, 3.7616003840631723`*^9},
3.761600417247177*^9, {3.761600447287475*^9, 3.761600477270297*^9},
3.7616005148939905`*^9, 3.7616006451156206`*^9, 3.761600791640889*^9,
3.761600834060937*^9, 3.761600909440611*^9, {3.7616009859724183`*^9,
3.7616010154170723`*^9}, {3.761601141864626*^9, 3.7616011479629335`*^9},
3.7616012206398506`*^9, 3.7616116909738927`*^9, 3.7616117254297523`*^9,
3.761611839021474*^9, {3.7616118773832197`*^9, 3.761611962680603*^9},
3.76161199475704*^9, 3.761614447436407*^9, {3.761614512461754*^9,
3.761614525398944*^9}, {3.76161457437449*^9, 3.7616146159611425`*^9},
3.761664287562508*^9, {3.7616643446259127`*^9, 3.7616644467794404`*^9}},
CellLabel->"Out[33]=",ExpressionUUID->"442e615b-9b65-49f5-b1cd-9ea090c85235"],
Cell[BoxData["0.0033176758594404584`"], "Output",
CellChangeTimes->{
3.761600196904907*^9, {3.761600367156971*^9, 3.7616003840631723`*^9},
3.761600417247177*^9, {3.761600447287475*^9, 3.761600477270297*^9},
3.7616005148939905`*^9, 3.7616006451156206`*^9, 3.761600791640889*^9,
3.761600834060937*^9, 3.761600909440611*^9, {3.7616009859724183`*^9,
3.7616010154170723`*^9}, {3.761601141864626*^9, 3.7616011479629335`*^9},
3.7616012206398506`*^9, 3.7616116909738927`*^9, 3.7616117254297523`*^9,
3.761611839021474*^9, {3.7616118773832197`*^9, 3.761611962680603*^9},
3.76161199475704*^9, 3.761614447436407*^9, {3.761614512461754*^9,
3.761614525398944*^9}, {3.76161457437449*^9, 3.7616146159611425`*^9},
3.761664287562508*^9, {3.7616643446259127`*^9, 3.761664446795063*^9}},
CellLabel->"Out[34]=",ExpressionUUID->"6ff784d1-d149-44d3-8285-5513dcddd5e5"]
}, Open ]],
Cell[BoxData[{
RowBox[{
RowBox[{"arr1", "=",
RowBox[{"{",
RowBox[{
"1.88071088", " ", ",", " ", "1.88030338", " ", ",", " ", "1.88030692",
" ", ",", " ", "1.88073478"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr2", "=", " ",
RowBox[{"{",
RowBox[{
"1.88080605", " ", ",", " ", "1.88036612", " ", ",", " ", "1.88029709",
" ", ",", " ", "1.88063226"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr3", " ", "=", " ",
RowBox[{"{",
RowBox[{
"1.88081517", " ", ",", " ", "1.88044245", " ", ",", " ", "1.88041662",
" ", ",", " ", "1.88079657"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr4", "=",
RowBox[{"{",
RowBox[{
"1.88044687", " ", ",", " ", "1.88005447", " ", ",", " ", "1.88001523",
" ", ",", " ", "1.88033844"}], " ", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"arr5", " ", "=",
RowBox[{"{",
RowBox[{
"1.88071720", " ", ",", " ", "1.88037161", " ", ",", " ", "1.88037501",
" ", ",", " ", "1.88072179"}], " ", "}"}]}], ";"}]}], "Input",
CellChangeTimes->{{3.761600001718884*^9, 3.761600002844644*^9}, {
3.761601635188143*^9, 3.7616016577403727`*^9}, {3.761612072898636*^9,
3.761612204384699*^9}, {3.761614377062617*^9, 3.761614426709996*^9}, {
3.761614633161831*^9, 3.76161464037823*^9}, {3.761664215984545*^9,
3.7616642600084963`*^9}, {3.761664560850435*^9, 3.7616645634596004`*^9}},
CellLabel->
"In[119]:=",ExpressionUUID->"6875c999-3be2-487e-a7bc-2dfc2cc644fd"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"mat", " ", "=", " ",
RowBox[{"Transpose", " ", "[",
RowBox[{"{",
RowBox[{"arr1", ",", "arr2", ",", "arr3", ",", "arr4", ",", "arr5"}],
"}"}], "]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"MatrixPlot", "[", "mat", "]"}]}], "Input",
CellChangeTimes->{{3.761611581553048*^9, 3.761611590277069*^9}, {
3.7616121868660326`*^9, 3.7616122182438564`*^9}, 3.7616122939697976`*^9,
3.7616146454844494`*^9},
CellLabel->
"In[124]:=",ExpressionUUID->"d235949c-3797-4f8d-9fb9-fc84bbf7bbe5"],
Cell[BoxData[
GraphicsBox[RasterBox[CompressedData["
1:eJwB9QEK/iFib1JlAwAAAAQAAAAFAAAAAwAAAC1e9bZT/u4/Rz3BHjbh3D/0
3E+6WqhZPyIT0mzEpu0/1HvaNMeL3z8BFdWcBu9tP/W9Sf0/VO8/Y0pQDoE2
3D+k1RGlFhpRP4TGhcr8nOs/uxibE51B4j+Q4+Bbi6SePyR8y9hyqO4/jZWP
hdSL3T9eebsEvhphP3W2ujaRves/JpBJyhbQ4j8wzrjLoWqwP+T9cFe1/us/
Ml04lvXs4z/kVouRLfbAPzq+fYb4pOw/1nltOvrF4D/bMJd1Y2J1P9F2Y5bx
P+w/kWHb2j0K5T9mPZznR7rJP3vXuPcQT+w/Or4WE1Ab4T8c8mdr1oV3P/mL
4Ccj3us/xLrGp4Ve4z/EukUUdiu5PwYjDTpTo+s/fKgDgurF4T8bC9adTcx7
P9lY/mTc+uw/8tbGC6hw4D9ezVwBCD9zP0o19npcH+w/lpzqJcF75D+yiqXh
cFnFP1E+a1cy+es/ggNvDJ1w4T/vMx52EKl5P06YP6K0/O0/s7mPUwrh3j/B
gzdusqdpPw1Gagkgqu8/tB7MSOSL2z8ArO9/FBpBPwAAAAAAAPA/4XoUrkfh
2j8AAAAAAAAAABg6VUK7UO0/M9HM1Vob4D+yWK5xzBtxPzdkSPGTUu4/3Yu5
BW823j+kc8ClNWFlP4Kc7Wo=
"], {{0, 0}, {5, 4}}, {0, 1}],
Frame->True,
FrameLabel->{None, None},
FrameTicks->{{{{3.5,
FormBox["1", TraditionalForm]}, {2.5,
FormBox["2", TraditionalForm]}, {1.5,
FormBox["3", TraditionalForm]}, {0.5,
FormBox["4", TraditionalForm]}}, {{3.5,
FormBox["1", TraditionalForm]}, {2.5,
FormBox["2", TraditionalForm]}, {1.5,
FormBox["3", TraditionalForm]}, {0.5,
FormBox["4", TraditionalForm]}}}, {{{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}, {{0.5,
FormBox["1", TraditionalForm]}, {1.5,
FormBox["2", TraditionalForm]}, {2.5,
FormBox["3", TraditionalForm]}, {3.5,
FormBox["4", TraditionalForm]}, {4.5,
FormBox["5", TraditionalForm]}}}},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
Method->{