forked from atcollab/at
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrift.m
1865 lines (1858 loc) · 110 KB
/
drift.m
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
function p = pathdef
%PATHDEF Search path defaults.
% PATHDEF returns a string that can be used as input to MATLABPATH
% in order to set the path.
% Copyright 1984-2016 The MathWorks, Inc.
% DO NOT MODIFY THIS FILE. IT IS AN AUTOGENERATED FILE.
% EDITING MAY CAUSE THE FILE TO BECOME UNREADABLE TO
% THE PATHTOOL AND THE INSTALLER.
p = [...
%%% BEGIN ENTRIES %%%
'C:\Users\zhang\Documents\GitHub\at\machine_data;', ...
'C:\Users\zhang\Documents\GitHub\at\atintegrators;', ...
'C:\Users\zhang\Documents\GitHub\at\atintegrators\user;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos\atfastring;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos\atmatchExamples;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos\atmatchExamples\bump;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos\atmatchExamples\ExampleATMATCH;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos\atmatchExamples\matchChromaticity;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos\gui;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos\IDModeling;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos\opticsAndBeamSizes;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos\responseMatrix;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos\tracking;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atdemos\trackWithImpedance;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atgui;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atmatch;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atphysics;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atphysics\CollectiveEffects;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atphysics\LinearOptics;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atphysics\LongitudinalDynamics;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atphysics\nafflib;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atphysics\NonLinearDynamics;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atphysics\Orbit;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atphysics\ParameterSummaryFunctions;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atphysics\Radiation;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atphysics\TouschekPiwinski;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atphysics\TuneAndChromaticity;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atplot;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\atplot\plotfunctions;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\attrack;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Converters;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Converters\AT2Elegant;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Converters\AT2G4BL;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Converters\AT2MAD8;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Converters\AT2MADX;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Converters\AT2OPA;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Converters\ELEGANT2AT;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Converters\MAD82MADX;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Converters\MADX2AT;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Converters\MADX2AT\Examples;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Converters\MADX2G4BL;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\element_creation;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\Paramgroup;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\lattice\survey;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\Aperture;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\create_elems;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\distance2curve;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\haissinski;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\lattice_tools;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\ATErrorAndCorrection;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\chromaticity;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\correction_chain;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\dispersion;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\DispersionFreeSteering;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\orbit;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\orbitbumps;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\orbitbumps\matching;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\RDT;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\response_matrix;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\RFcavity;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\trajectory;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\correction\tune;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\BPMerrors;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\DeltaS;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\DXDY;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\errordisplayfunctions;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\errorsmanipulation;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\FieldIntegral;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\Girders;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\LargeErrList;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\LargeWaveList;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\Multipoles;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\random;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\Survey;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\TILT;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\LatticeTuningFunctions\errors\wave;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\local_lattice_params;', ...
'C:\Users\zhang\Documents\GitHub\at\atmat\pubtools\VacuumLifetime;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atintegrators;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atintegrators\user;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos\atfastring;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos\atmatchExamples;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos\atmatchExamples\bump;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos\atmatchExamples\ExampleATMATCH;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos\atmatchExamples\matchChromaticity;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos\gui;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos\IDModeling;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos\opticsAndBeamSizes;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos\responseMatrix;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos\tracking;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atdemos\trackWithImpedance;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atgui;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atmatch;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atphysics;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atphysics\CollectiveEffects;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atphysics\LinearOptics;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atphysics\LongitudinalDynamics;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atphysics\nafflib;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atphysics\NonLinearDynamics;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atphysics\Orbit;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atphysics\ParameterSummaryFunctions;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atphysics\Radiation;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atphysics\TouschekPiwinski;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atphysics\TuneAndChromaticity;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atplot;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\atplot\plotfunctions;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\attrack;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Converters;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Converters\AT2Elegant;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Converters\AT2G4BL;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Converters\AT2MAD8;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Converters\AT2MADX;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Converters\AT2OPA;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Converters\ELEGANT2AT;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Converters\MAD82MADX;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Converters\MADX2AT;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Converters\MADX2AT\Examples;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Converters\MADX2G4BL;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\element_creation;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\Paramgroup;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\lattice\survey;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\Aperture;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\create_elems;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\distance2curve;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\haissinski;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\lattice_tools;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\ATErrorAndCorrection;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\chromaticity;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\correction_chain;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\dispersion;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\DispersionFreeSteering;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\orbit;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\orbitbumps;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\orbitbumps\matching;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\RDT;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\response_matrix;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\RFcavity;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\trajectory;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\correction\tune;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\BPMerrors;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\DeltaS;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\DXDY;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\errordisplayfunctions;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\errorsmanipulation;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\FieldIntegral;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\Girders;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\LargeErrList;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\LargeWaveList;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\Multipoles;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\random;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\Survey;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\TILT;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\LatticeTuningFunctions\errors\wave;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\local_lattice_params;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at\atmat\pubtools\VacuumLifetime;', ...
'C:\Users\zhang\Documents\GitHub\matlab\at;', ...
'C:\Users\zhang\AppData\Local\Temp\Editor_vxdxq;', ...
matlabroot,'\toolbox\matlab\capabilities;', ...
matlabroot,'\toolbox\matlab\datafun;', ...
matlabroot,'\toolbox\matlab\datatypes;', ...
matlabroot,'\toolbox\matlab\elfun;', ...
matlabroot,'\toolbox\matlab\elmat;', ...
matlabroot,'\toolbox\matlab\funfun;', ...
matlabroot,'\toolbox\matlab\general;', ...
matlabroot,'\toolbox\matlab\iofun;', ...
matlabroot,'\toolbox\matlab\lang;', ...
matlabroot,'\toolbox\matlab\matfun;', ...
matlabroot,'\toolbox\matlab\mvm;', ...
matlabroot,'\toolbox\matlab\ops;', ...
matlabroot,'\toolbox\matlab\polyfun;', ...
matlabroot,'\toolbox\matlab\randfun;', ...
matlabroot,'\toolbox\matlab\sparfun;', ...
matlabroot,'\toolbox\matlab\specfun;', ...
matlabroot,'\toolbox\matlab\strfun;', ...
matlabroot,'\toolbox\matlab\timefun;', ...
matlabroot,'\toolbox\matlab\validators;', ...
matlabroot,'\toolbox\hdlcoder\matlabhdlcoder\matlabhdlcoder;', ...
matlabroot,'\toolbox\hdlcoder\matlabhdlcoder;', ...
matlabroot,'\toolbox\matlabxl\function_wizard;', ...
matlabroot,'\toolbox\matlab\datatools\desktop_variableeditor\matlab;', ...
matlabroot,'\toolbox\matlab\datatools\desktop_workspacebrowser\matlab;', ...
matlabroot,'\toolbox\matlab\datatypes\calendarduration;', ...
matlabroot,'\toolbox\matlab\datatypes\categorical;', ...
matlabroot,'\toolbox\matlab\datatypes\codegen\categorical;', ...
matlabroot,'\toolbox\matlab\datatypes\shared\codegen;', ...
matlabroot,'\toolbox\matlab\datatypes\datetime;', ...
matlabroot,'\toolbox\matlab\datatypes\codegen\datetime;', ...
matlabroot,'\toolbox\matlab\datatypes\datetime_nonlibmatlab;', ...
matlabroot,'\toolbox\matlab\datatypes\duration;', ...
matlabroot,'\toolbox\matlab\datatypes\codegen\duration;', ...
matlabroot,'\toolbox\matlab\datatypes\shared\matlab_datatypes;', ...
matlabroot,'\toolbox\matlab\datatypes\tabular;', ...
matlabroot,'\toolbox\matlab\datatypes\codegen\tabular;', ...
matlabroot,'\toolbox\matlab\demos;', ...
matlabroot,'\toolbox\matlab\plottools\inspector;', ...
matlabroot,'\toolbox\matlab\graph2d;', ...
matlabroot,'\toolbox\matlab\graph3d;', ...
matlabroot,'\toolbox\matlab\graphics;', ...
matlabroot,'\toolbox\matlab\graphics\annotation;', ...
matlabroot,'\toolbox\matlab\graphics\axis;', ...
matlabroot,'\toolbox\matlab\graphics\chart;', ...
matlabroot,'\toolbox\matlab\graphics\color;', ...
matlabroot,'\toolbox\matlab\graphics\function;', ...
matlabroot,'\toolbox\matlab\graphics\illustration;', ...
matlabroot,'\toolbox\matlab\graphics\legacy;', ...
matlabroot,'\toolbox\matlab\graphics\obsolete;', ...
matlabroot,'\toolbox\matlab\graphics\printing;', ...
matlabroot,'\toolbox\matlab\graphics\objectsystem;', ...
matlabroot,'\toolbox\matlab\graphics\primitive;', ...
matlabroot,'\toolbox\matlab\plottools;', ...
matlabroot,'\toolbox\matlab\scribe;', ...
matlabroot,'\toolbox\matlab\scribe\obsolete;', ...
matlabroot,'\toolbox\matlab\specgraph;', ...
matlabroot,'\toolbox\matlab\uitools;', ...
matlabroot,'\toolbox\matlab\uitools\obsolete;', ...
matlabroot,'\toolbox\matlab\hardware\stubs;', ...
matlabroot,'\toolbox\matlab\images;', ...
matlabroot,'\toolbox\matlab\iot;', ...
matlabroot,'\toolbox\matlab\iot\connectivity;', ...
matlabroot,'\toolbox\local;', ...
matlabroot,'\toolbox\matlab\maps;', ...
matlabroot,'\toolbox\matlab\graphics\maps;', ...
matlabroot,'\toolbox\matlab\optimfun;', ...
matlabroot,'\toolbox\matlab\bigdata;', ...
matlabroot,'\toolbox\matlab\codeanalysis\reports\analysis;', ...
matlabroot,'\toolbox\matlab\codetools;', ...
matlabroot,'\toolbox\matlab\codetools\embeddedoutputs;', ...
matlabroot,'\toolbox\matlab\codetools\embeddedoutputs\datatoolsregistration;', ...
matlabroot,'\toolbox\matlab\codetools\liveapps;', ...
matlabroot,'\toolbox\matlab\datamanager;', ...
matlabroot,'\toolbox\matlab\datastoreio;', ...
matlabroot,'\toolbox\matlab\dataui;', ...
matlabroot,'\toolbox\matlab\depfun;', ...
matlabroot,'\toolbox\matlab\graphfun;', ...
matlabroot,'\toolbox\matlab\guide;', ...
matlabroot,'\toolbox\matlab\helptools;', ...
matlabroot,'\toolbox\matlab\icons;', ...
matlabroot,'\toolbox\matlab\mapreduceio;', ...
matlabroot,'\toolbox\matlab\parallel;', ...
matlabroot,'\toolbox\matlab\parquetds;', ...
matlabroot,'\toolbox\matlab\parquetio;', ...
matlabroot,'\toolbox\matlab\taskfuture;', ...
matlabroot,'\toolbox\matlab\taskpool;', ...
matlabroot,'\toolbox\matlab\testframework\measurement\core;', ...
matlabroot,'\toolbox\matlab\testframework\measurement\ext;', ...
matlabroot,'\toolbox\matlab\testframework\mock\core;', ...
matlabroot,'\toolbox\matlab\testframework\performance\core;', ...
matlabroot,'\toolbox\matlab\testframework\performance\ext;', ...
matlabroot,'\toolbox\matlab\testframework\uiautomation;', ...
matlabroot,'\toolbox\matlab\testframework\uitest;', ...
matlabroot,'\toolbox\matlab\testframework\ui\toolstrip;', ...
matlabroot,'\toolbox\matlab\testframework\unittest\core;', ...
matlabroot,'\toolbox\matlab\testframework\obsolete;', ...
matlabroot,'\toolbox\matlab\testframework\unittest\ext;', ...
matlabroot,'\toolbox\matlab\testframework\unittest\parallel;', ...
matlabroot,'\toolbox\matlab\verctrl;', ...
matlabroot,'\toolbox\matlab\winfun;', ...
matlabroot,'\toolbox\matlab\winfun\net;', ...
matlabroot,'\toolbox\simulink\components;', ...
matlabroot,'\toolbox\coder\simulinkcoder\xil\toolstrip\m;', ...
matlabroot,'\toolbox\rtw\targets\asap2\asap2\dataclasses;', ...
matlabroot,'\toolbox\rtw\targets\asap2\asap2;', ...
matlabroot,'\toolbox\rtw\targets\asap2\asap2\user;', ...
matlabroot,'\toolbox\rtw\targets\common\can\blocks\dataclasses;', ...
matlabroot,'\toolbox\rtw\targets\common\can\blocks;', ...
matlabroot,'\toolbox\rtw\targets\common\can\blocks\tlc_c;', ...
matlabroot,'\toolbox\rtw\targets\common\tgtcommon;', ...
matlabroot,'\toolbox\coder\simulinkcoder\cgv\api;', ...
matlabroot,'\toolbox\coder\simulinkcoder;', ...
matlabroot,'\toolbox\coder\simulinkcoder\targets;', ...
matlabroot,'\toolbox\rtw\targets\pil;', ...
matlabroot,'\toolbox\coder\simulinkcoder\toolstriphw\m;', ...
matlabroot,'\toolbox\coder\advisor;', ...
matlabroot,'\toolbox\coder\simulinkcoder_app\code_perspective;', ...
matlabroot,'\toolbox\coder\simulinkcoder_app\core;', ...
matlabroot,'\toolbox\coder\simulinkcoder_app\quick_start\m;', ...
matlabroot,'\toolbox\coder\simulinkcoder_app\report;', ...
matlabroot,'\toolbox\coder\simulinkcoder_app\slfpc;', ...
matlabroot,'\toolbox\coder\simulinkcoder_app\toolstrip\m;', ...
matlabroot,'\toolbox\coder\simulinkcoder_app\ui;', ...
matlabroot,'\toolbox\rtw\accel;', ...
matlabroot,'\toolbox\coder\simulinkcoder_core;', ...
matlabroot,'\toolbox\coder\simulinkcoder_core\templates;', ...
matlabroot,'\toolbox\rtw\rtwdemos;', ...
matlabroot,'\toolbox\rtw\rtwdemos\rsimdemos;', ...
matlabroot,'\toolbox\coder\objectives;', ...
matlabroot,'\toolbox\simulinkcompiler\simulinkcompiler;', ...
matlabroot,'\toolbox\simulinktest\simulinktest;', ...
matlabroot,'\toolbox\simulinktest\core\assessments\assessments;', ...
matlabroot,'\toolbox\simulinktest\core\assessments_editor\assessments_editor;', ...
matlabroot,'\toolbox\simulinktest\core\simharness\simharness;', ...
matlabroot,'\toolbox\simulinktest\core\observer\observer;', ...
matlabroot,'\toolbox\simulinktest\core\injector\injector;', ...
matlabroot,'\toolbox\simulinktest\core\fuzzer\fuzzer;', ...
matlabroot,'\toolbox\simulinktest\core\testadvisor\testadvisor;', ...
matlabroot,'\toolbox\simulinktest\core\slt_blkmaputil\slt_blkmaputil;', ...
matlabroot,'\toolbox\simulinktest\simulinktestdemos;', ...
matlabroot,'\toolbox\stm\stm\matlabunit;', ...
matlabroot,'\toolbox\simulinktest\core\testsequence\testsequence;', ...
matlabroot,'\toolbox\simulink\blocks\library;', ...
matlabroot,'\toolbox\simulink\blocks\library\simulinkcoder;', ...
matlabroot,'\toolbox\simulink\blocks\obsolete;', ...
matlabroot,'\toolbox\simulink\blocks\pid_images;', ...
matlabroot,'\toolbox\simulink\comparisons\blockdiagram;', ...
matlabroot,'\toolbox\simulink\comparisons\model\edits;', ...
matlabroot,'\toolbox\simulink\configset\configset;', ...
matlabroot,'\toolbox\simulink\configset_model\configset;', ...
matlabroot,'\toolbox\simulink\configset_model\configset\derived;', ...
matlabroot,'\toolbox\simulink\blocks;', ...
matlabroot,'\toolbox\simulink\simulink\dataclasses;', ...
matlabroot,'\toolbox\simulink\simulink;', ...
matlabroot,'\toolbox\simulink\simulink\mplayio;', ...
matlabroot,'\toolbox\simulink\simulink\dataobjectwizard;', ...
matlabroot,'\toolbox\simulink\simulink\slresolve;', ...
matlabroot,'\toolbox\simulink\simulink\units;', ...
matlabroot,'\toolbox\simulink\simulink\model_transformer;', ...
matlabroot,'\toolbox\simulink\simulink\clone_detection;', ...
matlabroot,'\toolbox\simulink\simulink\sortingcheck;', ...
matlabroot,'\toolbox\simulink\simulink\sfuncheck;', ...
matlabroot,'\toolbox\simulink\simulink\string;', ...
matlabroot,'\toolbox\simulink\simulink\templates\core;', ...
matlabroot,'\toolbox\simulink\simdemos\dataclasses;', ...
matlabroot,'\toolbox\simulink\simdemos;', ...
matlabroot,'\toolbox\simulink\simdemos\aerospace;', ...
matlabroot,'\toolbox\simulink\simdemos\aerospace\lunarwrl;', ...
matlabroot,'\toolbox\simulink\simdemos\automotive;', ...
matlabroot,'\toolbox\simulink\simdemos\simfeatures;', ...
matlabroot,'\toolbox\simulink\simdemos\simfeatures\modelreference;', ...
matlabroot,'\toolbox\simulink\simdemos\simfeatures\datadictionary;', ...
matlabroot,'\toolbox\simulink\simdemos\automotive\fuelsys;', ...
matlabroot,'\toolbox\simulink\simdemos\simgeneral;', ...
matlabroot,'\toolbox\simulink\simdemos\industrial;', ...
matlabroot,'\toolbox\simulink\simdemos\automotive\powerwindow;', ...
matlabroot,'\toolbox\simulink\slmanifest;', ...
matlabroot,'\toolbox\simulink\sldependency;', ...
matlabroot,'\toolbox\simulink\diagram\mi\m;', ...
matlabroot,'\toolbox\slde\slde;', ...
matlabroot,'\toolbox\slde\examples;', ...
matlabroot,'\toolbox\simulink\engine_interface;', ...
matlabroot,'\toolbox\simulink\simulink_export_methods;', ...
matlabroot,'\toolbox\simulink\hmi;', ...
matlabroot,'\toolbox\simulink\hmi\customwebblocks\m;', ...
matlabroot,'\toolbox\simulink\simulink_hmi_slexportprevious;', ...
matlabroot,'\toolbox\simulink\legacycode;', ...
matlabroot,'\toolbox\simulink\lutwidget\m;', ...
matlabroot,'\toolbox\simulink\simulink\modeladvisor;', ...
matlabroot,'\toolbox\simulink\simulink\modeladvisor\fixpt;', ...
matlabroot,'\toolbox\simulink\simulink\modeladvisor\misra;', ...
matlabroot,'\toolbox\simulink\simulink\modeladvisor\security;', ...
matlabroot,'\toolbox\simulink\simulink\templates\product;', ...
matlabroot,'\toolbox\simulink\protected_model\core\core;', ...
matlabroot,'\toolbox\simulink\sdi;', ...
matlabroot,'\toolbox\simulink\search\mi\m;', ...
matlabroot,'\toolbox\simulink\simulationinput;', ...
matlabroot,'\toolbox\simulink\simulationinput_deployed;', ...
matlabroot,'\toolbox\simulink\simulationinput_desktop;', ...
matlabroot,'\toolbox\simulink\simulationinput_proxy;', ...
matlabroot,'\toolbox\simulink\simulationoutput;', ...
matlabroot,'\toolbox\simulink_standalone\shared;', ...
matlabroot,'\toolbox\simulink_standalone\utils;', ...
matlabroot,'\toolbox\simulink\sysarch\sysarch;', ...
matlabroot,'\toolbox\simulink\simulink\frameedit;', ...
matlabroot,'\toolbox\simulink\ui\library_browser\core\m;', ...
matlabroot,'\toolbox\simulink\ui\studio\config\m;', ...
matlabroot,'\toolbox\simulink\ui\sysdoc\core;', ...
matlabroot,'\toolbox\shared\examples\verification;', ...
matlabroot,'\toolbox\simulink\webblocks\core\m;', ...
matlabroot,'\toolbox\simulink\webblocks\widgets\m;', ...
matlabroot,'\toolbox\stateflow\stateflow;', ...
matlabroot,'\toolbox\stateflow\coder;', ...
matlabroot,'\toolbox\stateflow\sfdemos;', ...
matlabroot,'\toolbox\stateflow\stateflow_lib;', ...
matlabroot,'\toolbox\shared\stateflow;', ...
matlabroot,'\toolbox\stateflow\sfxdemos;', ...
matlabroot,'\toolbox\stateflow\sftemplates;', ...
matlabroot,'\toolbox\stateflow\ui\studio\config\m;', ...
matlabroot,'\toolbox\5g\5g;', ...
matlabroot,'\toolbox\matlab\addons;', ...
matlabroot,'\toolbox\matlab\addons\cef;', ...
matlabroot,'\toolbox\matlab\addons\fileexchange;', ...
matlabroot,'\toolbox\matlab\addons\supportpackages;', ...
matlabroot,'\toolbox\matlab\addons_product;', ...
matlabroot,'\toolbox\matlab\supportpackagemanagement;', ...
matlabroot,'\toolbox\matlab\addon_updates\matlab;', ...
matlabroot,'\toolbox\matlab\addon_enable_disable_management\matlab;', ...
matlabroot,'\toolbox\simulink\advisorui2;', ...
matlabroot,'\toolbox\aero\aero;', ...
matlabroot,'\toolbox\aeroblks;', ...
matlabroot,'\toolbox\aeroblks\aeroblks;', ...
matlabroot,'\toolbox\aeroblks\aeroblksutilities;', ...
matlabroot,'\toolbox\aeroblks\aeroblksutilities\fwdtransformations;', ...
matlabroot,'\toolbox\aeroblks\aerodemos;', ...
matlabroot,'\toolbox\aeroblks\aerodemos\texture;', ...
matlabroot,'\toolbox\shared\aeroblks\aerodemos\hybridaircraft;', ...
matlabroot,'\toolbox\shared\aeroblks\aerodemos\quadcopter;', ...
matlabroot,'\toolbox\aeroblks\flightcontrol;', ...
matlabroot,'\toolbox\aeroblks\flightcontrol\3dofairframe;', ...
matlabroot,'\toolbox\aeroblks\flightcontrol\6dofairframe;', ...
matlabroot,'\toolbox\aeroblks\aeroblks\hmi;', ...
matlabroot,'\toolbox\aeroblks\templates;', ...
matlabroot,'\toolbox\aero\uicomponents\plugin\appdesigner;', ...
matlabroot,'\toolbox\aero\astdemos;', ...
matlabroot,'\toolbox\aero\uicomponents;', ...
matlabroot,'\toolbox\antenna\antenna;', ...
matlabroot,'\toolbox\antenna\antenna\antennautilities;', ...
matlabroot,'\toolbox\antenna\antenna\meshutilities;', ...
matlabroot,'\toolbox\antenna\antenna\cadsupport\gerber;', ...
matlabroot,'\toolbox\antenna\antenna\optimutilities\models;', ...
matlabroot,'\toolbox\antenna\antenna\optimutilities\sadea;', ...
matlabroot,'\toolbox\antenna\antenna\optimutilities\sadeautils;', ...
matlabroot,'\toolbox\antenna\atexamples;', ...
matlabroot,'\toolbox\matlab\appcontainer\appcontainer;', ...
matlabroot,'\toolbox\matlab\appdesigner\appdesigner;', ...
matlabroot,'\toolbox\matlab\appdesigner\appdesigner\interface;', ...
matlabroot,'\toolbox\matlab\appdesigner\appdesigner\runtime;', ...
matlabroot,'\toolbox\matlab\apps;', ...
matlabroot,'\toolbox\audio\audio;', ...
matlabroot,'\toolbox\audio\samples;', ...
matlabroot,'\toolbox\audio\audioutilities;', ...
matlabroot,'\toolbox\audio\audioutilities\audioinit;', ...
matlabroot,'\toolbox\audio\audioutilities\audiomex;', ...
matlabroot,'\toolbox\audio\audio\compiled;', ...
matlabroot,'\toolbox\audio\audioexamples;', ...
matlabroot,'\toolbox\matlab\audiovideo;', ...
matlabroot,'\toolbox\audio\audioapps\audioapps;', ...
matlabroot,'\toolbox\audio\audioapps\audioapputils;', ...
matlabroot,'\toolbox\audio\audioapps\audiolabeler;', ...
matlabroot,'\toolbox\audio\templates;', ...
matlabroot,'\toolbox\autoblks;', ...
matlabroot,'\toolbox\autoblks\autoblks;', ...
matlabroot,'\toolbox\autoblks\autoblksutilities;', ...
matlabroot,'\toolbox\autoblks\autoblksutilities\mbctemplates;', ...
matlabroot,'\toolbox\autoblks\autodemos;', ...
matlabroot,'\toolbox\autoblks\autoblksshared;', ...
matlabroot,'\toolbox\autoblks\autoblksshared\mbc;', ...
matlabroot,'\toolbox\autoblks\autoblksshared\mbctemplates;', ...
matlabroot,'\toolbox\autoblks_utils;', ...
matlabroot,'\toolbox\coder\autosar;', ...
matlabroot,'\toolbox\coder\autosar\blocks;', ...
matlabroot,'\toolbox\coder\autosar\xrelexport;', ...
matlabroot,'\toolbox\rtw\targets\autosar\autosar\dataclasses;', ...
matlabroot,'\toolbox\rtw\targets\autosar\autosar;', ...
matlabroot,'\toolbox\coder\autosar_templates;', ...
matlabroot,'\toolbox\simulink\batchsim;', ...
matlabroot,'\toolbox\bioinfo\bioinfo;', ...
matlabroot,'\toolbox\bioinfo\biolearning;', ...
matlabroot,'\toolbox\bioinfo\cufflinks;', ...
matlabroot,'\toolbox\bioinfo\microarray;', ...
matlabroot,'\toolbox\bioinfo\mass_spec;', ...
matlabroot,'\toolbox\bioinfo\proteins;', ...
matlabroot,'\toolbox\bioinfo\biomatrices;', ...
matlabroot,'\toolbox\bioinfo\graphtheory;', ...
matlabroot,'\toolbox\bioinfo\bioinfodata;', ...
matlabroot,'\toolbox\bioinfo\biodemos;', ...
matlabroot,'\toolbox\matlab\cefclient;', ...
matlabroot,'\toolbox\clone_detection_app\m;', ...
matlabroot,'\toolbox\coder\coder_app\ml;', ...
matlabroot,'\toolbox\coder\codedescriptor_core;', ...
matlabroot,'\toolbox\coder\codegendemos;', ...
matlabroot,'\toolbox\coder\coder;', ...
matlabroot,'\toolbox\coder\compile;', ...
matlabroot,'\toolbox\coder\foundation\build;', ...
matlabroot,'\toolbox\coder\connectivity;', ...
matlabroot,'\toolbox\rtw\targets\connectivity;', ...
matlabroot,'\toolbox\coder\connectivity_core;', ...
matlabroot,'\toolbox\coder\coverage;', ...
matlabroot,'\toolbox\coder\cpptools;', ...
matlabroot,'\toolbox\rtw\rtw;', ...
matlabroot,'\toolbox\coder\foundation;', ...
matlabroot,'\toolbox\coder\foundation\build\tools\registry;', ...
matlabroot,'\toolbox\coder\foundation\tfl;', ...
matlabroot,'\toolbox\coder\foundation\tfl\autosar\autosar4p0\ifx;', ...
matlabroot,'\toolbox\coder\foundation\tfl\autosar\autosar4p0\ifl;', ...
matlabroot,'\toolbox\coder\foundation\tfl\gui;', ...
matlabroot,'\toolbox\coder\foundation\templates;', ...
matlabroot,'\toolbox\shared\simtargets;', ...
matlabroot,'\toolbox\coder\matlabcoder;', ...
matlabroot,'\toolbox\coder\matlabcoder\templates;', ...
matlabroot,'\toolbox\coder\profile;', ...
matlabroot,'\toolbox\coder\rtiostream;', ...
matlabroot,'\toolbox\coder\sltoolstrip_base_hw\m;', ...
matlabroot,'\toolbox\eml\eml;', ...
matlabroot,'\toolbox\coder\trace;', ...
matlabroot,'\toolbox\coder\wizard;', ...
matlabroot,'\toolbox\coder\xcp;', ...
matlabroot,'\toolbox\coder\xrel;', ...
matlabroot,'\toolbox\coder\xrelimport;', ...
matlabroot,'\toolbox\comm\comm;', ...
matlabroot,'\toolbox\comm\commutilities\comminit;', ...
matlabroot,'\toolbox\comm\commutilities\commmex;', ...
matlabroot,'\toolbox\comm\commutilities;', ...
matlabroot,'\toolbox\comm\commdeprecated;', ...
matlabroot,'\toolbox\comm\comm\compiled;', ...
matlabroot,'\toolbox\comm\cdma2000;', ...
matlabroot,'\toolbox\comm\commhdloptimized;', ...
matlabroot,'\toolbox\comm\commhdloptimized\commutilities;', ...
matlabroot,'\toolbox\comm\commdemos;', ...
matlabroot,'\help\toolbox\comm\examples;', ...
matlabroot,'\toolbox\comm\templates;', ...
matlabroot,'\toolbox\shared\comparisons;', ...
matlabroot,'\toolbox\comparisons\view\edits;', ...
matlabroot,'\toolbox\simulink\compiled_model_interface;', ...
matlabroot,'\toolbox\compiler_sdk\java;', ...
matlabroot,'\toolbox\compiler;', ...
matlabroot,'\toolbox\compiler\compilerdemos;', ...
matlabroot,'\toolbox\compiler\java;', ...
matlabroot,'\toolbox\compiler_sdk;', ...
matlabroot,'\toolbox\compiler\mltall;', ...
matlabroot,'\toolbox\matlab\configtools;', ...
matlabroot,'\toolbox\matlab\connector2\common;', ...
matlabroot,'\toolbox\matlab\connector2\configuration;', ...
matlabroot,'\toolbox\matlab\connector2\connector;', ...
matlabroot,'\toolbox\matlab\connector2\editor;', ...
matlabroot,'\toolbox\matlab\connector2\figures;', ...
matlabroot,'\toolbox\matlab\connector2\http;', ...
matlabroot,'\toolbox\matlab\connector2\interpreter;', ...
matlabroot,'\toolbox\matlab\connector2\logger;', ...
matlabroot,'\toolbox\matlab\connector2\messageservice;', ...
matlabroot,'\toolbox\matlab\connector2\mgg;', ...
matlabroot,'\toolbox\matlab\connector2\nativebridge;', ...
matlabroot,'\toolbox\matlab\connector2\restmatlab;', ...
matlabroot,'\toolbox\matlab\connector2\session;', ...
matlabroot,'\toolbox\matlab\connector2\shadowfiles;', ...
matlabroot,'\toolbox\matlab\connector2\worker;', ...
matlabroot,'\toolbox\control\control;', ...
matlabroot,'\toolbox\control\ctrlmodels;', ...
matlabroot,'\toolbox\control\ctrlanalysis;', ...
matlabroot,'\toolbox\control\ctrldesign;', ...
matlabroot,'\toolbox\control\ctrlplots;', ...
matlabroot,'\toolbox\control\ctrlguis;', ...
matlabroot,'\toolbox\control\ctrlobsolete;', ...
matlabroot,'\toolbox\control\ctrlutil;', ...
matlabroot,'\toolbox\control\ctrldemos;', ...
matlabroot,'\help\toolbox\control\examples;', ...
matlabroot,'\toolbox\shared\cosimservice\ddg;', ...
matlabroot,'\toolbox\shared\cosimservice\src\cosimcompiledportattribs;', ...
matlabroot,'\toolbox\matlab\external\interfaces\cpp;', ...
matlabroot,'\toolbox\matlab\reports;', ...
matlabroot,'\toolbox\curvefit\curvefit;', ...
matlabroot,'\toolbox\curvefit\splines;', ...
matlabroot,'\toolbox\curvefit\sftoolgui;', ...
matlabroot,'\toolbox\curvefit\curvefitdemos;', ...
matlabroot,'\toolbox\da;', ...
matlabroot,'\toolbox\daq\daq;', ...
matlabroot,'\toolbox\daq\apps\daqaiapplet;', ...
matlabroot,'\toolbox\daq\apps\daqaoapplet;', ...
matlabroot,'\toolbox\daq\apps\shared;', ...
matlabroot,'\toolbox\daq\cli;', ...
matlabroot,'\toolbox\daq\daqdemos;', ...
matlabroot,'\toolbox\daq\apps\provider;', ...
matlabroot,'\toolbox\daq\daqsdk\bin\win64;', ...
matlabroot,'\toolbox\daq\daqsdk;', ...
matlabroot,'\toolbox\daq\daqsdk\tests;', ...
matlabroot,'\toolbox\daq\daqblks;', ...
matlabroot,'\toolbox\daq\daqblks\daqsfcn;', ...
matlabroot,'\toolbox\database\database;', ...
matlabroot,'\toolbox\database\dbdata;', ...
matlabroot,'\toolbox\datafeed\datafeed;', ...
matlabroot,'\toolbox\datafeed\datafeeddemos;', ...
matlabroot,'\toolbox\datafeed\dfgui;', ...
matlabroot,'\toolbox\matlab\datatools\datatoolsservices\matlab;', ...
matlabroot,'\toolbox\matlab\datatools\editorconverters\matlab;', ...
matlabroot,'\toolbox\matlab\datatools\importtool\matlab\peer;', ...
matlabroot,'\toolbox\matlab\datatools\importtool\matlab\server;', ...
matlabroot,'\toolbox\matlab\datatools\inspector\matlab;', ...
matlabroot,'\toolbox\matlab\datatools\inspector\registration;', ...
matlabroot,'\toolbox\matlab\datatools\peermodel_mcos\matlab;', ...
matlabroot,'\toolbox\matlab\datatools\plotstab\matlab;', ...
matlabroot,'\toolbox\matlab\datatools\variableeditor\matlab;', ...
matlabroot,'\toolbox\matlab\datatools\workspacebrowser\matlab;', ...
matlabroot,'\toolbox\matlab\ddux;', ...
matlabroot,'\toolbox\dig\dig;', ...
matlabroot,'\toolbox\dotnetbuilder\dotnetbuilder;', ...
matlabroot,'\toolbox\hdlverifier\dpigenerator;', ...
matlabroot,'\toolbox\hdlverifier\dpigenerator\src;', ...
matlabroot,'\toolbox\hdlverifier\dpigenerator\src\dpiblkscb;', ...
matlabroot,'\toolbox\hdlverifier\dpigenerator\dpiblklib;', ...
matlabroot,'\toolbox\hdlverifier\dpigenerator\rtw;', ...
matlabroot,'\toolbox\shared\dastudio\dpvu\dpvu;', ...
matlabroot,'\toolbox\shared\dastudio\dpvu\dpvu\metamodel;', ...
matlabroot,'\toolbox\shared\dastudio\dpvu\dpvu\actions;', ...
matlabroot,'\toolbox\driving\driving;', ...
matlabroot,'\toolbox\driving\drivingdata;', ...
matlabroot,'\toolbox\driving\drivingutilities;', ...
matlabroot,'\toolbox\shared\drivingscenario;', ...
matlabroot,'\toolbox\shared\drivingutils;', ...
matlabroot,'\toolbox\shared\drivingvisuals;', ...
matlabroot,'\toolbox\driving\drivingdemos;', ...
matlabroot,'\toolbox\dsp\dsp;', ...
matlabroot,'\toolbox\dsp\dsputilities;', ...
matlabroot,'\toolbox\dsp\dsputilities\crl;', ...
matlabroot,'\toolbox\dsp\dsputilities\dspinit;', ...
matlabroot,'\toolbox\dsp\dsputilities\dspmex;', ...
matlabroot,'\toolbox\dsp\dsp\compiled;', ...
matlabroot,'\toolbox\dsp\dsphdl;', ...
matlabroot,'\toolbox\dsp\dsphdl\compiled;', ...
matlabroot,'\toolbox\dsp\dsphdl\dsputilities;', ...
matlabroot,'\toolbox\dsp\dspdemos;', ...
matlabroot,'\help\toolbox\dsp\examples;', ...
matlabroot,'\toolbox\shared\spc\src_ml;', ...
matlabroot,'\toolbox\shared\dsp\simulink\dsp;', ...
matlabroot,'\toolbox\dsp\templates;', ...
matlabroot,'\toolbox\rtw\targets\ecoder;', ...
matlabroot,'\toolbox\rtw\targets\mpt;', ...
matlabroot,'\toolbox\rtw\targets\mpt\mpt;', ...
matlabroot,'\toolbox\rtw\targets\mpt\user_specific;', ...
matlabroot,'\toolbox\coder\embeddedcoder;', ...
matlabroot,'\toolbox\rtw\targets\ecoder\ecoderdemos\dataclasses;', ...
matlabroot,'\toolbox\rtw\targets\ecoder\ecoderdemos;', ...
matlabroot,'\toolbox\econ\econ;', ...
matlabroot,'\toolbox\econ\econdata;', ...
matlabroot,'\toolbox\econ\econguis;', ...
matlabroot,'\toolbox\edalink\edalink;', ...
matlabroot,'\toolbox\hdlverifier\hdlverifier;', ...
matlabroot,'\toolbox\edalink\foundation\hdllink;', ...
matlabroot,'\toolbox\simulink\edittimeui;', ...
matlabroot,'\toolbox\coder\embeddedcoder_templates;', ...
matlabroot,'\toolbox\matlab\embeddedoutputs\outputs;', ...
matlabroot,'\toolbox\matlab\embeddedoutputs\outpututilities;', ...
matlabroot,'\toolbox\matlab\external\engines\engine_api;', ...
matlabroot,'\examples\5g\data;', ...
matlabroot,'\examples\aero\data;', ...
matlabroot,'\examples\antenna\data;', ...
matlabroot,'\examples\audio\data;', ...
matlabroot,'\examples\audio_wavelet\data;', ...
matlabroot,'\examples\autoblks\data;', ...
matlabroot,'\examples\autonomous_control\data;', ...
matlabroot,'\examples\autosarblockset\data;', ...
matlabroot,'\examples\bioinfo\data;', ...
matlabroot,'\examples\bluetooth\data;', ...
matlabroot,'\examples\coder\data;', ...
matlabroot,'\examples\coder_compiler_dsp\data;', ...
matlabroot,'\examples\comm\data;', ...
matlabroot,'\examples\comm_simrf\data;', ...
matlabroot,'\examples\control\data;', ...
matlabroot,'\examples\controls_id\data;', ...
matlabroot,'\examples\control_deeplearning\data;', ...
matlabroot,'\examples\daq\data;', ...
matlabroot,'\examples\daq_stateflow\data;', ...
matlabroot,'\examples\database\data;', ...
matlabroot,'\examples\deeplearning_shared\data;', ...
matlabroot,'\examples\driving\data;', ...
matlabroot,'\examples\driving_fusion\data;', ...
matlabroot,'\examples\driving_fusion_vision\data;', ...
matlabroot,'\examples\driving_stateflow\data;', ...
matlabroot,'\examples\dsp\data;', ...
matlabroot,'\examples\dsp_hdlcoder\data;', ...
matlabroot,'\examples\ecoder\data;', ...
matlabroot,'\examples\econ\data;', ...
matlabroot,'\examples\finance\data;', ...
matlabroot,'\examples\fininst\data;', ...
matlabroot,'\examples\fixedpoint\data;', ...
matlabroot,'\examples\fusion\data;', ...
matlabroot,'\examples\fuzzy\data;', ...
matlabroot,'\examples\globaloptim\data;', ...
matlabroot,'\examples\gpucoder\data;', ...
matlabroot,'\examples\graphics\data;', ...
matlabroot,'\examples\hdlcoder\data;', ...
matlabroot,'\examples\hdlverifier\data;', ...
matlabroot,'\examples\ident\data;', ...
matlabroot,'\examples\images\data;', ...
matlabroot,'\examples\imaq\data;', ...
matlabroot,'\examples\instrument\data;', ...
matlabroot,'\examples\lte\data;', ...
matlabroot,'\examples\ltehdl\data;', ...
matlabroot,'\examples\map\data;', ...
matlabroot,'\examples\matlab\data;', ...
matlabroot,'\examples\matlabmobile\data;', ...
matlabroot,'\examples\mcb\data;', ...
matlabroot,'\examples\mpc\data;', ...
matlabroot,'\examples\msblks\data;', ...
matlabroot,'\examples\nav\data;', ...
matlabroot,'\examples\nav_robotics\data;', ...
matlabroot,'\examples\nnet\data;', ...
matlabroot,'\examples\opc\data;', ...
matlabroot,'\examples\optim\data;', ...
matlabroot,'\examples\parallel\data;', ...
matlabroot,'\examples\pde\data;', ...
matlabroot,'\examples\phased\data;', ...
matlabroot,'\examples\phased_comm\data;', ...
matlabroot,'\examples\plantdeployment\data;', ...
matlabroot,'\examples\predmaint\data;', ...
matlabroot,'\examples\predmaint_shared\data;', ...
matlabroot,'\examples\rf\data;', ...
matlabroot,'\examples\rf_serdes\data;', ...
matlabroot,'\examples\risk\data;', ...
matlabroot,'\examples\rl\data;', ...
matlabroot,'\examples\robotics\data;', ...
matlabroot,'\examples\robust\data;', ...
matlabroot,'\examples\ros\data;', ...
matlabroot,'\examples\rptgen\data;', ...
matlabroot,'\examples\rptgenext\data;', ...
matlabroot,'\examples\serdes\data;', ...
matlabroot,'\examples\shared_fusion_arduinoio\data;', ...
matlabroot,'\examples\shared_positioning\data;', ...
matlabroot,'\examples\signal\data;', ...
matlabroot,'\examples\simbio\data;', ...
matlabroot,'\examples\simevents\data;', ...
matlabroot,'\examples\simrf\data;', ...
matlabroot,'\examples\simscape\data;', ...
matlabroot,'\examples\simscape_shared\data;', ...
matlabroot,'\examples\simulink\data;', ...
matlabroot,'\examples\simulinkcoder\data;', ...
matlabroot,'\examples\simulinkcompiler\data;', ...
matlabroot,'\examples\simulinktest\data;', ...
matlabroot,'\examples\simulink_general\data;', ...
matlabroot,'\examples\sl3d\data;', ...
matlabroot,'\examples\slcheck\data;', ...
matlabroot,'\examples\slcontrol\data;', ...
matlabroot,'\examples\slcoverage\data;', ...
matlabroot,'\examples\sldo\data;', ...
matlabroot,'\examples\sldrt\data;', ...
matlabroot,'\examples\sldv\data;', ...
matlabroot,'\examples\slrequirements\data;', ...
matlabroot,'\examples\sm\data;', ...
matlabroot,'\examples\soc\data;', ...
matlabroot,'\examples\spc_channel\data;', ...
matlabroot,'\examples\sps\data;', ...
matlabroot,'\examples\stateflow\data;', ...
matlabroot,'\examples\stats\data;', ...
matlabroot,'\examples\symbolic\data;', ...
matlabroot,'\examples\systemcomposer\data;', ...
matlabroot,'\examples\textanalytics\data;', ...
matlabroot,'\examples\vdynblks\data;', ...
matlabroot,'\examples\vision\data;', ...
matlabroot,'\examples\visionhdl\data;', ...
matlabroot,'\examples\visionhdl_hdlcoder\data;', ...
matlabroot,'\examples\vnt\data;', ...
matlabroot,'\examples\vnt_driving\data;', ...
matlabroot,'\examples\wavelet\data;', ...
matlabroot,'\examples\wlan\data;', ...
matlabroot,'\examples\wlan_phased\data;', ...
matlabroot,'\examples\xpc\data;', ...
matlabroot,'\toolbox\exlink;', ...
matlabroot,'\toolbox\experiments\experiments;', ...
matlabroot,'\toolbox\matlab\filebrowser;', ...
matlabroot,'\toolbox\dsp\filterdesign;', ...
matlabroot,'\toolbox\finance\calendar;', ...
matlabroot,'\toolbox\finance\finance;', ...
matlabroot,'\toolbox\finance\finsupport;', ...
matlabroot,'\toolbox\finance\ftseries;', ...
matlabroot,'\toolbox\finance\bigdata;', ...
matlabroot,'\toolbox\finance\findemos;', ...
matlabroot,'\toolbox\matlab\findfiles\m;', ...
matlabroot,'\toolbox\fininst\fininst;', ...
matlabroot,'\toolbox\fininst\fininstdemos;', ...
matlabroot,'\toolbox\fixedpoint\fixedpointconverter;', ...
matlabroot,'\toolbox\fixedpoint\fixedpointtool;', ...
matlabroot,'\toolbox\fixedpoint\fidemos;', ...
matlabroot,'\toolbox\fixedpoint\embeddedlib;', ...
matlabroot,'\toolbox\fixedpoint\fixedpoint;', ...
matlabroot,'\toolbox\fixpoint;', ...
matlabroot,'\toolbox\fixpoint\fpca;', ...
matlabroot,'\toolbox\fixpoint\fxptopo;', ...
matlabroot,'\toolbox\fixpoint\restorepoint;', ...
matlabroot,'\toolbox\fixpoint\evolutions;', ...
matlabroot,'\toolbox\fixpoint\fixed;', ...
matlabroot,'\toolbox\simulink\fixedandfloat\fxpdemos;', ...
matlabroot,'\toolbox\coder\float2fixed;', ...
matlabroot,'\toolbox\coder\float2fixed\demos;', ...
matlabroot,'\toolbox\coder\float2fixed\dmm_emlauthoring;', ...
matlabroot,'\toolbox\coder\float2fixed\custom_logger;', ...
matlabroot,'\toolbox\coder\float2fixed\mathlib;', ...
matlabroot,'\toolbox\shared\fmu_base;', ...
matlabroot,'\toolbox\shared\fmu_block;', ...
matlabroot,'\toolbox\shared\simulink\fmuexport;', ...
matlabroot,'\toolbox\shared\fmu_share\fmuexport;', ...
matlabroot,'\toolbox\fusion\fusion;', ...
matlabroot,'\toolbox\fusion\fusiondata;', ...
matlabroot,'\toolbox\fuzzy\fuzzy;', ...
matlabroot,'\toolbox\fuzzy\fuzzyutil;', ...
matlabroot,'\toolbox\fuzzy\fuzdemos;', ...
matlabroot,'\toolbox\matlab\uitools\uicomponents\components;', ...
matlabroot,'\toolbox\geoweb\connector;', ...
matlabroot,'\toolbox\geoweb\geoweb;', ...
matlabroot,'\toolbox\globaloptim;', ...
matlabroot,'\toolbox\globaloptim\globaloptim;', ...
matlabroot,'\toolbox\globaloptim\globaloptimdemos;', ...
matlabroot,'\toolbox\gpucoder\gpucoder;', ...
matlabroot,'\toolbox\gpucoder\gpucoder\foundation\build;', ...
matlabroot,'\toolbox\gpucoder\gpucoderdemos;', ...
matlabroot,'\toolbox\coder\half;', ...
matlabroot,'\toolbox\hdlcoder\hdlcoder;', ...
matlabroot,'\toolbox\hdlcoder\hdlcoder\hdlutils;', ...
matlabroot,'\toolbox\hdlcoder\hdlcoder\hdlwa;', ...
matlabroot,'\toolbox\hdlcoder\hdlssc\hdlsscworkflowadvisor;', ...
matlabroot,'\toolbox\hdlcoder\hdlssc;', ...
matlabroot,'\toolbox\hdlcoder\toolstrip\mfiles;', ...
matlabroot,'\toolbox\hdlcoder\hdlcoderdemos;', ...
matlabroot,'\toolbox\hdlcoder\hdlcoderdemos\matlabhdlcoderdemos;', ...
matlabroot,'\toolbox\hdlcoder\hdlcoderdemos\simscapehdldemos;', ...
matlabroot,'\toolbox\hdlcoder\filters;', ...
matlabroot,'\toolbox\hdlcoder\hdlcommon;', ...
matlabroot,'\toolbox\hdlcoder\hdlcommon\modelcheckeradvisor;', ...
matlabroot,'\toolbox\hdlfilter\hdlfilter;', ...
matlabroot,'\toolbox\hdlfilter\hdlfiltdemos;', ...
matlabroot,'\toolbox\hdlcoder\hdllib\ml_lib;', ...
matlabroot,'\toolbox\hdlcoder\hdllib\sl_lib;', ...
matlabroot,'\toolbox\hdlcoder\hdlslrt;', ...
matlabroot,'\toolbox\hdlverifier\hdlverifier_examples;', ...
matlabroot,'\toolbox\shared\hadoopserializer;', ...
matlabroot,'\toolbox\shared\appdes\services;', ...
matlabroot,'\toolbox\shared\hwmanager\hwconnection;', ...
matlabroot,'\toolbox\shared\hwmanager\hwmanagerapp;', ...
matlabroot,'\toolbox\shared\hwmanager\hwmanagerapp\devicedetection;', ...
matlabroot,'\toolbox\shared\hwmanager\hwmanagerapp\devices;', ...
matlabroot,'\toolbox\shared\hwmanager\hwmanagerapp\providers;', ...
matlabroot,'\toolbox\shared\hwmanager\hwmanagerapp\plugins;', ...
matlabroot,'\toolbox\shared\hwmanager\hwmanagerapp\hwsetup;', ...
matlabroot,'\toolbox\shared\hwmanager\hwmanagerapp\devicedata;', ...
matlabroot,'\toolbox\shared\hwmanager\hwservices\hwinfo;', ...
matlabroot,'\toolbox\shared\hwmanager\hwsetup;', ...
matlabroot,'\toolbox\shared\hwmanager\hwsetup\hwwidgets;', ...
matlabroot,'\toolbox\shared\hwmanager\hwsetup\hwtemplates;', ...
matlabroot,'\toolbox\shared\hwmanager\hwsetup\launch;', ...
matlabroot,'\toolbox\shared\hwmanager\logger;', ...
matlabroot,'\toolbox\simulink\iconeditor;', ...
matlabroot,'\toolbox\idelink\extensions\ticcs;', ...
matlabroot,'\toolbox\idelink\extensions\ticcs\ccsblks;', ...
matlabroot,'\toolbox\idelink\foundation\pjtgenerator;', ...
matlabroot,'\toolbox\idelink\foundation\pjtgenerator\rtw;', ...
matlabroot,'\toolbox\idelink\foundation\pjtgenerator\tgtpref2;', ...
matlabroot,'\toolbox\idelink\foundation\pjtgenerator\profiler;', ...
matlabroot,'\toolbox\idelink\foundation\pjtgenerator\mdlinfo;', ...
matlabroot,'\toolbox\idelink\foundation\pjtgenerator\blks;', ...
matlabroot,'\toolbox\idelink\foundation\pjtgenerator\blks\masks;', ...
matlabroot,'\toolbox\idelink\foundation\pjtgenerator\blks\tlc_c;', ...
matlabroot,'\toolbox\idelink\foundation;', ...
matlabroot,'\toolbox\idelink\foundation\autointerface;', ...
matlabroot,'\toolbox\idelink\foundation\autointerface\ideregisterplugins;', ...
matlabroot,'\toolbox\idelink\foundation\util;', ...
matlabroot,'\toolbox\idelink\foundation\errorhandler;', ...
matlabroot,'\toolbox\idelink\foundation\xmakefile;', ...
matlabroot,'\toolbox\idelink\foundation\hookpoints;', ...
matlabroot,'\toolbox\idelink\idelinkdemos;', ...
matlabroot,'\toolbox\ident\ident;', ...
matlabroot,'\toolbox\ident\nlident;', ...
matlabroot,'\toolbox\ident\idobsolete;', ...
matlabroot,'\toolbox\ident\idguis;', ...
matlabroot,'\toolbox\ident\idutils;', ...
matlabroot,'\toolbox\ident\idrecursive;', ...
matlabroot,'\toolbox\ident\idhelp;', ...
matlabroot,'\toolbox\ident\iddemos;', ...
matlabroot,'\toolbox\ident\iddemos\examples;', ...
matlabroot,'\toolbox\images\colorspaces;', ...
matlabroot,'\toolbox\images\images;', ...
matlabroot,'\toolbox\images\imdata;', ...
matlabroot,'\toolbox\images\imuitools;', ...
matlabroot,'\toolbox\images\iptformats;', ...
matlabroot,'\toolbox\images\iptutils;', ...
matlabroot,'\toolbox\matlab\imagesci;', ...
matlabroot,'\toolbox\images\deep;', ...
matlabroot,'\toolbox\images\imdemos;', ...
matlabroot,'\toolbox\imaq\imaq;', ...
matlabroot,'\toolbox\imaq\imaqdemos;', ...
matlabroot,'\toolbox\imaq\imaqblks\imaqblks;', ...
matlabroot,'\toolbox\imaq\imaqblks\imaqmex;', ...
matlabroot,'\toolbox\imaq\imaqblks\imaqmasks;', ...
matlabroot,'\toolbox\edalink\extensions\incisive\incisive;', ...
matlabroot,'\toolbox\edalink\extensions\incisive\incisivedemos;', ...
matlabroot,'\toolbox\instrument\instrument;', ...
matlabroot,'\toolbox\instrument\instrumentblks\instrumentblks;', ...
matlabroot,'\toolbox\instrument\instrumentblks\instrumentmex;', ...
matlabroot,'\toolbox\instrument\instrumentblks\instrumentmasks;', ...
matlabroot,'\toolbox\instrument\apps\modbusapplet;', ...
matlabroot,'\toolbox\instrument\apps\provider;', ...
matlabroot,'\toolbox\shared\instrument;', ...
matlabroot,'\toolbox\shared\spcuilib\iomanager;', ...
matlabroot,'\toolbox\learning\simulink\core\m;', ...
matlabroot,'\toolbox\simulink\libcodegen_harness\libcodegen_harness;', ...
matlabroot,'\toolbox\shared\spcuilib\logicanalyzer;', ...
matlabroot,'\toolbox\lte\lte;', ...
matlabroot,'\toolbox\whdl\whdl;', ...
matlabroot,'\toolbox\whdl\whdlutilities;', ...
matlabroot,'\toolbox\whdl\whdlutilities\whdlinit;', ...
matlabroot,'\toolbox\whdl\whdlexamples;', ...
matlabroot,'\toolbox\whdl\templates;', ...
matlabroot,'\toolbox\shared\m3i;', ...
matlabroot,'\toolbox\map\graphics;', ...
matlabroot,'\toolbox\map\map;', ...
matlabroot,'\toolbox\map\mapgeodesy;', ...
matlabroot,'\toolbox\map\mapdisp;', ...
matlabroot,'\toolbox\map\mapformats;', ...
matlabroot,'\toolbox\map\mapproj;', ...
matlabroot,'\toolbox\map\mapobsolete;', ...
matlabroot,'\toolbox\map\mapdata;', ...
matlabroot,'\toolbox\map\mapdata\sdts;', ...
matlabroot,'\toolbox\simulink\mask\iconeditor;', ...
matlabroot,'\toolbox\shared\spcuilib\matrixviewer;', ...
matlabroot,'\toolbox\mbc\mbc;', ...
matlabroot,'\toolbox\mbc\mbcdata;', ...
matlabroot,'\toolbox\mbc\mbcdesign;', ...
matlabroot,'\toolbox\mbc\mbcexpr;', ...
matlabroot,'\toolbox\mbc\mbcguitools;', ...
matlabroot,'\toolbox\mbc\mbclayouts;', ...
matlabroot,'\toolbox\mbc\mbcmodels;', ...
matlabroot,'\toolbox\mbc\mbcsimulink;', ...
matlabroot,'\toolbox\mbc\mbctools;', ...
matlabroot,'\toolbox\mbc\mbcview;', ...
matlabroot,'\toolbox\mbc\mbcdemos;', ...
matlabroot,'\toolbox\mcb;', ...
matlabroot,'\toolbox\mcb\mcbblocks;', ...
matlabroot,'\toolbox\mcb\mcbexamples;', ...
matlabroot,'\toolbox\mps\discovery;', ...
matlabroot,'\toolbox\mps\json;', ...
matlabroot,'\toolbox\mps\persistence;', ...
matlabroot,'\toolbox\matlab\mex;', ...
matlabroot,'\toolbox\matlab\external\mex;', ...
matlabroot,'\toolbox\shared\mldatx;', ...
matlabroot,'\toolbox\compiler\mlhadoop;', ...
matlabroot,'\toolbox\compiler\mlspark;', ...
matlabroot,'\toolbox\edalink\extensions\modelsim\modelsim;', ...
matlabroot,'\toolbox\edalink\extensions\modelsim\modelsimdemos;', ...
matlabroot,'\toolbox\mpc\mpc;', ...
matlabroot,'\toolbox\mpc\mpcguis;', ...
matlabroot,'\toolbox\mpc\mpcobsolete;', ...
matlabroot,'\toolbox\mpc\mpcutils;', ...
matlabroot,'\toolbox\mpc\mpcdemos;', ...
matlabroot,'\toolbox\msblks\msblks;', ...
matlabroot,'\toolbox\msblks\msblksutilities;', ...
matlabroot,'\toolbox\multisim;', ...
matlabroot,'\ui\mw-webwindow\mw-webwindow-m;', ...
matlabroot,'\toolbox\nav\navalgs;', ...
matlabroot,'\toolbox\nav\navalgs2;', ...
matlabroot,'\toolbox\nav\nav;', ...
matlabroot,'\toolbox\nav\navsimulink;', ...
matlabroot,'\toolbox\nav\navsimulink\blockicons;', ...
matlabroot,'\toolbox\nav\navslamapp;', ...
matlabroot,'\toolbox\fixedpoint\ui\nedfunctionapproximationtool;', ...
matlabroot,'\toolbox\fixedpoint\ui\nedvisuals;', ...
matlabroot,'\toolbox\matlab\networklib;', ...
matlabroot,'\toolbox\nnet;', ...
matlabroot,'\toolbox\nnet\nncontrol;', ...
matlabroot,'\toolbox\nnet\nnet;', ...
matlabroot,'\toolbox\nnet\nnet\nnadapt;', ...
matlabroot,'\toolbox\nnet\nnet\nndatafun;', ...
matlabroot,'\toolbox\nnet\nnet\nnderivative;', ...
matlabroot,'\toolbox\nnet\nnet\nndistance;', ...
matlabroot,'\toolbox\nnet\nnet\nndivision;', ...
matlabroot,'\toolbox\nnet\nnet\nninitlayer;', ...
matlabroot,'\toolbox\nnet\nnet\nninitnetwork;', ...
matlabroot,'\toolbox\nnet\nnet\nninitweight;', ...
matlabroot,'\toolbox\nnet\nnet\nnlearn;', ...
matlabroot,'\toolbox\nnet\nnet\nnnetfun;', ...
matlabroot,'\toolbox\nnet\nnet\nnnetinput;', ...
matlabroot,'\toolbox\nnet\nnet\nnnetwork;', ...
matlabroot,'\toolbox\nnet\nnet\nnperformance;', ...
matlabroot,'\toolbox\nnet\nnet\nnplot;', ...
matlabroot,'\toolbox\nnet\nnet\nnprocess;', ...
matlabroot,'\toolbox\nnet\nnet\nnsearch;', ...
matlabroot,'\toolbox\nnet\nnet\nntopology;', ...
matlabroot,'\toolbox\nnet\nnet\nntrain;', ...
matlabroot,'\toolbox\nnet\nnet\nntransfer;', ...
matlabroot,'\toolbox\nnet\nnet\nnweight;', ...
matlabroot,'\toolbox\nnet\nnguis;', ...
matlabroot,'\toolbox\nnet\nnobsolete;', ...
matlabroot,'\toolbox\nnet\nnutils;', ...
matlabroot,'\toolbox\nnet\cnn;', ...
matlabroot,'\toolbox\nnet\cnn\spkgs;', ...
matlabroot,'\toolbox\nnet\deep;', ...
matlabroot,'\toolbox\nnet\deepapp;', ...
matlabroot,'\toolbox\nnet\deepviz;', ...
matlabroot,'\toolbox\nnet\nndemos;', ...
matlabroot,'\toolbox\nnet\nndemos\nndatasets;', ...
matlabroot,'\toolbox\opc\opc;', ...
matlabroot,'\toolbox\opc\opcgui;', ...
matlabroot,'\toolbox\opc\opcblks\opcblks;', ...
matlabroot,'\toolbox\opc\opcblks\opcmasks;', ...
matlabroot,'\toolbox\opc\opcdemos;', ...
matlabroot,'\toolbox\opc\opcdemos\opcblksdemos;', ...
matlabroot,'\toolbox\optim\optim;', ...