-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpathdef.m
2196 lines (2189 loc) · 126 KB
/
pathdef.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-2021 The MathWorks, Inc.
% DO NOT MODIFY THIS FILE. THE LIST OF ENTRIES IS AUTOGENERATED BY THE
% INSTALLER, SAVEPATH, OR OTHER TOOLS. EDITING THE FILE MAY CAUSE THE FILE
% TO BECOME UNREADABLE TO THE PATHTOOL AND THE INSTALLER.
p = [...
%%% BEGIN ENTRIES %%%
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/references:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/references/discriminability:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/references/icc:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/data/output:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/data:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/data/output/discriminability:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/data/output/discriminability/all:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/data/output/discriminability/hv:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/data/output/discriminability/mdd:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/ID_code:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/data:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/data/basc_v2:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/data/basc_v4:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/data/schaefersc_v2:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/data/schaefersc_v4:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/old:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/old/data_v21:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/old/data_v21_1:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/old/outs:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/old/outs_v21:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/old/outs_v21_1:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/outs:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/outs/basc_v2:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/outs/basc_v4:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/outs/schaefersc_v2:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/ID_scripts/edge_code/outs/schaefersc_v4:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/matlab:', ...
'/gpfs/gibbs/project/scheinost/ccc98/CATD-ReliabilityAnalysis/matlab/scripts:', ...
matlabroot,'/toolbox/matlab/addon_enable_disable_management/matlab:', ...
matlabroot,'/toolbox/matlab/addon_updates/matlab:', ...
matlabroot,'/toolbox/matlab/addons:', ...
matlabroot,'/toolbox/matlab/addons/cef:', ...
matlabroot,'/toolbox/matlab/addons/fileexchange:', ...
matlabroot,'/toolbox/matlab/addons/supportpackages:', ...
matlabroot,'/toolbox/matlab/addons_common/matlab:', ...
matlabroot,'/toolbox/matlab/addons_product:', ...
matlabroot,'/toolbox/matlab/addons_registry/matlab:', ...
matlabroot,'/toolbox/matlab/addressbar_plugins/browse_for_folder_button/matlab:', ...
matlabroot,'/toolbox/matlab/addressbar_plugins/cd_up_one_dir_button/matlab:', ...
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/appdesigner/comparisons/mldesktop_m:', ...
matlabroot,'/toolbox/matlab/appdesigner/matlab_integration/cfb/cfb:', ...
matlabroot,'/toolbox/matlab/apps:', ...
matlabroot,'/toolbox/matlab/audiovideo:', ...
matlabroot,'/toolbox/matlab/bigdata:', ...
matlabroot,'/toolbox/matlab/bluetooth:', ...
matlabroot,'/toolbox/matlab/capabilities:', ...
matlabroot,'/toolbox/matlab/cefclient:', ...
matlabroot,'/toolbox/matlab/codeanalysis/reports/analysis:', ...
matlabroot,'/toolbox/matlab/codeanalysis/tools:', ...
matlabroot,'/toolbox/matlab/codetools:', ...
matlabroot,'/toolbox/matlab/codetools/embeddedoutputs:', ...
matlabroot,'/toolbox/matlab/codetools/embeddedoutputs/DataToolsRegistration:', ...
matlabroot,'/toolbox/matlab/codetools/liveapps:', ...
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/matlab/datafun:', ...
matlabroot,'/toolbox/matlab/datamanager:', ...
matlabroot,'/toolbox/matlab/datastoreio:', ...
matlabroot,'/toolbox/matlab/datatools/datatoolsservices/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/desktop_variableeditor/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/desktop_workspacebrowser/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/matlab_integration/cfb/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/media_widgets/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/peermodel_mcos/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/plotstab/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/preprocessing:', ...
matlabroot,'/toolbox/matlab/datatools/variableeditor/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/widgets/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/workspacebrowser/matlab:', ...
matlabroot,'/toolbox/matlab/datatypes:', ...
matlabroot,'/toolbox/matlab/datatypes/applyfuns:', ...
matlabroot,'/toolbox/matlab/datatypes/calendarDuration:', ...
matlabroot,'/toolbox/matlab/datatypes/categorical:', ...
matlabroot,'/toolbox/matlab/datatypes/cell:', ...
matlabroot,'/toolbox/matlab/datatypes/cell_nonlibmatlab:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/categorical:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/datetime:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/duration:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/tabular:', ...
matlabroot,'/toolbox/matlab/datatypes/datetime:', ...
matlabroot,'/toolbox/matlab/datatypes/datetime_nonlibmatlab:', ...
matlabroot,'/toolbox/matlab/datatypes/duration:', ...
matlabroot,'/toolbox/matlab/datatypes/shared/codegen:', ...
matlabroot,'/toolbox/matlab/datatypes/shared/matlab_datatypes:', ...
matlabroot,'/toolbox/matlab/datatypes/struct:', ...
matlabroot,'/toolbox/matlab/datatypes/tabular:', ...
matlabroot,'/toolbox/matlab/dataui:', ...
matlabroot,'/toolbox/matlab/ddux:', ...
matlabroot,'/toolbox/matlab/debugger:', ...
matlabroot,'/toolbox/matlab/demos:', ...
matlabroot,'/toolbox/matlab/dependency/analysis:', ...
matlabroot,'/toolbox/matlab/dependency/app:', ...
matlabroot,'/toolbox/matlab/dependency/attribute:', ...
matlabroot,'/toolbox/matlab/dependency/comparisons/mldesktop/matlab:', ...
matlabroot,'/toolbox/matlab/dependency/matlab:', ...
matlabroot,'/toolbox/matlab/dependency/refactoring:', ...
matlabroot,'/toolbox/matlab/dependency/report:', ...
matlabroot,'/toolbox/matlab/dependency/widget/progress:', ...
matlabroot,'/toolbox/matlab/dependency/widget/progress_web:', ...
matlabroot,'/toolbox/matlab/dependency/widget/window:', ...
matlabroot,'/toolbox/matlab/depfun:', ...
matlabroot,'/toolbox/matlab/editor/cfb_integration/editor_actions/matlab:', ...
matlabroot,'/toolbox/matlab/elfun:', ...
matlabroot,'/toolbox/matlab/elmat:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/figureoutputs:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/outputs:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/outpututilities:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/variableoutputs:', ...
matlabroot,'/toolbox/matlab/external/engines/codegen:', ...
matlabroot,'/toolbox/matlab/external/engines/engine_api:', ...
matlabroot,'/toolbox/matlab/external/interfaces/cpp:', ...
matlabroot,'/toolbox/matlab/external/interfaces/java/jmi:', ...
matlabroot,'/toolbox/matlab/external/interfaces/json:', ...
matlabroot,'/toolbox/matlab/external/interfaces/python:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/http:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/restful:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/wsdl:', ...
matlabroot,'/toolbox/matlab/external/mex:', ...
matlabroot,'/toolbox/matlab/file_chooser/service/matlab:', ...
matlabroot,'/toolbox/matlab/filebrowser:', ...
matlabroot,'/toolbox/matlab/filesystem/services/matlab:', ...
matlabroot,'/toolbox/matlab/findfiles/m:', ...
matlabroot,'/toolbox/matlab/funfun:', ...
matlabroot,'/toolbox/matlab/general:', ...
matlabroot,'/toolbox/matlab/graph2d:', ...
matlabroot,'/toolbox/matlab/graph3d:', ...
matlabroot,'/toolbox/matlab/graphfun:', ...
matlabroot,'/toolbox/matlab/graphfun/codegen:', ...
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/hg:', ...
matlabroot,'/toolbox/matlab/graphics/illustration:', ...
matlabroot,'/toolbox/matlab/graphics/legacy:', ...
matlabroot,'/toolbox/matlab/graphics/maps:', ...
matlabroot,'/toolbox/matlab/graphics/math:', ...
matlabroot,'/toolbox/matlab/graphics/objectsystem:', ...
matlabroot,'/toolbox/matlab/graphics/obsolete:', ...
matlabroot,'/toolbox/matlab/graphics/primitive:', ...
matlabroot,'/toolbox/matlab/graphics/printing:', ...
matlabroot,'/toolbox/matlab/guide:', ...
matlabroot,'/toolbox/matlab/hardware/stubs:', ...
matlabroot,'/toolbox/matlab/helptools:', ...
matlabroot,'/toolbox/matlab/helptools/docsearch_server:', ...
matlabroot,'/toolbox/matlab/helptools/reference:', ...
matlabroot,'/toolbox/matlab/helptools_js/link_click_handling_docservice/m:', ...
matlabroot,'/toolbox/matlab/helptools_js/matlab_colon_docservice/m:', ...
matlabroot,'/toolbox/matlab/htmlviewer:', ...
matlabroot,'/toolbox/matlab/icons:', ...
matlabroot,'/toolbox/matlab/images:', ...
matlabroot,'/toolbox/matlab/imagesci:', ...
matlabroot,'/toolbox/matlab/indentcode/m:', ...
matlabroot,'/toolbox/matlab/indexing:', ...
matlabroot,'/toolbox/matlab/io/archive:', ...
matlabroot,'/toolbox/matlab/io/datastore/array:', ...
matlabroot,'/toolbox/matlab/io/datastore/common:', ...
matlabroot,'/toolbox/matlab/io/datastore/file:', ...
matlabroot,'/toolbox/matlab/io/datastore/fileset:', ...
matlabroot,'/toolbox/matlab/io/datastore/image:', ...
matlabroot,'/toolbox/matlab/io/datastore/keyvalue:', ...
matlabroot,'/toolbox/matlab/io/datastore/legacy:', ...
matlabroot,'/toolbox/matlab/io/datastore/parquet:', ...
matlabroot,'/toolbox/matlab/io/datastore/range:', ...
matlabroot,'/toolbox/matlab/io/datastore/spreadsheet:', ...
matlabroot,'/toolbox/matlab/io/datastore/tall:', ...
matlabroot,'/toolbox/matlab/io/datastore/text:', ...
matlabroot,'/toolbox/matlab/io/filesystem:', ...
matlabroot,'/toolbox/matlab/io/filter:', ...
matlabroot,'/toolbox/matlab/io/ftp:', ...
matlabroot,'/toolbox/matlab/io/functions:', ...
matlabroot,'/toolbox/matlab/io/html:', ...
matlabroot,'/toolbox/matlab/io/parquet:', ...
matlabroot,'/toolbox/matlab/io/spreadsheet:', ...
matlabroot,'/toolbox/matlab/io/text:', ...
matlabroot,'/toolbox/matlab/io/word:', ...
matlabroot,'/toolbox/matlab/io/xml:', ...
matlabroot,'/toolbox/matlab/iofun:', ...
matlabroot,'/toolbox/matlab/iot:', ...
matlabroot,'/toolbox/matlab/iot/connectivity:', ...
matlabroot,'/toolbox/matlab/lang:', ...
matlabroot,'/toolbox/matlab/licensing:', ...
matlabroot,'/toolbox/matlab/login:', ...
matlabroot,'/toolbox/matlab/mapreduceio:', ...
matlabroot,'/toolbox/matlab/maps:', ...
matlabroot,'/toolbox/matlab/matfun:', ...
matlabroot,'/toolbox/matlab/matlab_preferences/matlab:', ...
matlabroot,'/toolbox/matlab/mex:', ...
matlabroot,'/toolbox/matlab/mvm:', ...
matlabroot,'/toolbox/matlab/network:', ...
matlabroot,'/toolbox/matlab/networklib:', ...
matlabroot,'/toolbox/matlab/networklib/apps/tcpclientapp:', ...
matlabroot,'/toolbox/matlab/ops:', ...
matlabroot,'/toolbox/matlab/optimfun:', ...
matlabroot,'/toolbox/matlab/optimfun/gui:', ...
matlabroot,'/toolbox/matlab/oss:', ...
matlabroot,'/toolbox/matlab/parallel:', ...
matlabroot,'/toolbox/matlab/parquetds:', ...
matlabroot,'/toolbox/matlab/parquetio:', ...
matlabroot,'/toolbox/matlab/pathtool:', ...
matlabroot,'/toolbox/matlab/plottools:', ...
matlabroot,'/toolbox/matlab/plottools/inspector:', ...
matlabroot,'/toolbox/matlab/polyfun:', ...
matlabroot,'/toolbox/matlab/preferences/variablesprefpanel/variablesprefpanel-ui:', ...
matlabroot,'/toolbox/matlab/preferences/workspaceprefpanel/workspaceprefpanel-ui:', ...
matlabroot,'/toolbox/matlab/profileviewer:', ...
matlabroot,'/toolbox/matlab/project:', ...
matlabroot,'/toolbox/matlab/project/cfbfileinfoplugin/matlab:', ...
matlabroot,'/toolbox/matlab/project/comparison:', ...
matlabroot,'/toolbox/matlab/project/creation/fromarchive:', ...
matlabroot,'/toolbox/matlab/project/creation/fromfile:', ...
matlabroot,'/toolbox/matlab/project/dependency:', ...
matlabroot,'/toolbox/matlab/project/example:', ...
matlabroot,'/toolbox/matlab/project/preferences:', ...
matlabroot,'/toolbox/matlab/project/toolstrip:', ...
matlabroot,'/toolbox/matlab/project/unsavedchanges:', ...
matlabroot,'/toolbox/matlab/project/views/action_web/project-action-ui/matlab:', ...
matlabroot,'/toolbox/matlab/project/views/core:', ...
matlabroot,'/toolbox/matlab/project/views/labels:', ...
matlabroot,'/toolbox/matlab/project/views/references:', ...
matlabroot,'/toolbox/matlab/project/views/unsavedchanges:', ...
matlabroot,'/toolbox/matlab/project/views/util:', ...
matlabroot,'/toolbox/matlab/randfun:', ...
matlabroot,'/toolbox/matlab/registration_framework/matlab:', ...
matlabroot,'/toolbox/matlab/reports:', ...
matlabroot,'/toolbox/matlab/resources_folder:', ...
matlabroot,'/toolbox/matlab/richcontent_preview/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_clike_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_java_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_js_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_mlike_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_python_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_tlc_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_verilog_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_vhdl_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_xml_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/scribe:', ...
matlabroot,'/toolbox/matlab/scribe/obsolete:', ...
matlabroot,'/toolbox/matlab/serial:', ...
matlabroot,'/toolbox/matlab/serialport:', ...
matlabroot,'/toolbox/matlab/serialport/apps/serialportapp:', ...
matlabroot,'/toolbox/matlab/sparfun:', ...
matlabroot,'/toolbox/matlab/specfun:', ...
matlabroot,'/toolbox/matlab/specgraph:', ...
matlabroot,'/toolbox/matlab/storage/matlabdrive:', ...
matlabroot,'/toolbox/matlab/storage/mldrivedesktop:', ...
matlabroot,'/toolbox/matlab/storage/mldrivejsplugins/matlabdrive_js/matlab:', ...
matlabroot,'/toolbox/matlab/storage/mldrivejsplugins/sharing_actions/matlab:', ...
matlabroot,'/toolbox/matlab/storage/mldrivejsplugins/tripwire_button/matlab:', ...
matlabroot,'/toolbox/matlab/strfun:', ...
matlabroot,'/toolbox/matlab/strfun/pattern:', ...
matlabroot,'/toolbox/matlab/strfun/validators:', ...
matlabroot,'/toolbox/matlab/supportpackagemanagement:', ...
matlabroot,'/toolbox/matlab/system:', ...
matlabroot,'/toolbox/matlab/system/editor:', ...
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/mock/core/masked:', ...
matlabroot,'/toolbox/matlab/testframework/obsolete:', ...
matlabroot,'/toolbox/matlab/testframework/performance/core:', ...
matlabroot,'/toolbox/matlab/testframework/performance/ext:', ...
matlabroot,'/toolbox/matlab/testframework/ui/toolstrip:', ...
matlabroot,'/toolbox/matlab/testframework/uiautomation:', ...
matlabroot,'/toolbox/matlab/testframework/uitest:', ...
matlabroot,'/toolbox/matlab/testframework/unittest/core:', ...
matlabroot,'/toolbox/matlab/testframework/unittest/core/masked:', ...
matlabroot,'/toolbox/matlab/testframework/unittest/ext:', ...
matlabroot,'/toolbox/matlab/testframework/unittest/parallel:', ...
matlabroot,'/toolbox/matlab/timefun:', ...
matlabroot,'/toolbox/matlab/timeseries:', ...
matlabroot,'/toolbox/matlab/toolbox_packaging:', ...
matlabroot,'/toolbox/matlab/toolboxmanagement/matlab_api:', ...
matlabroot,'/toolbox/matlab/toolstrip:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/databrowser:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/graphics:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/plugin/appdesigner:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/style:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/uicontrol:', ...
matlabroot,'/toolbox/matlab/uitools:', ...
matlabroot,'/toolbox/matlab/uitools/mofigurehelperfunc:', ...
matlabroot,'/toolbox/matlab/uitools/obsolete:', ...
matlabroot,'/toolbox/matlab/uitools/uicomponents/components:', ...
matlabroot,'/toolbox/matlab/updateinstaller:', ...
matlabroot,'/toolbox/matlab/urlmanager:', ...
matlabroot,'/toolbox/matlab/validators:', ...
matlabroot,'/toolbox/matlab/verctrl:', ...
matlabroot,'/toolbox/matlab/webcam:', ...
matlabroot,'/toolbox/matlab/winfun:', ...
matlabroot,'/toolbox/matlab/winfun/NET:', ...
matlabroot,'/toolbox/local:', ...
matlabroot,'/toolbox/simulink/IconEditor:', ...
matlabroot,'/toolbox/simulink/advisor:', ...
matlabroot,'/toolbox/simulink/advisor/advisor_common/ml:', ...
matlabroot,'/toolbox/simulink/advisor/advisor_ui/ml:', ...
matlabroot,'/toolbox/simulink/batchsim:', ...
matlabroot,'/toolbox/simulink/blockSupport:', ...
matlabroot,'/toolbox/simulink/blocks:', ...
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/blocks/sb2sl:', ...
matlabroot,'/toolbox/simulink/comparisons/blockdiagram/matlab:', ...
matlabroot,'/toolbox/simulink/comparisons/dict/mldesktop/matlab:', ...
matlabroot,'/toolbox/simulink/comparisons/model/edits:', ...
matlabroot,'/toolbox/simulink/comparisons/model/mldesktop/matlab:', ...
matlabroot,'/toolbox/simulink/comparisons/scope/matlab:', ...
matlabroot,'/toolbox/simulink/compiled_model_interface:', ...
matlabroot,'/toolbox/simulink/components:', ...
matlabroot,'/toolbox/simulink/components/images:', ...
matlabroot,'/toolbox/simulink/configset/context/m:', ...
matlabroot,'/toolbox/simulink/configset_model/configset:', ...
matlabroot,'/toolbox/simulink/configset_model/configset/derived:', ...
matlabroot,'/toolbox/simulink/configset_model/m:', ...
matlabroot,'/toolbox/simulink/constraint_manager/matlab:', ...
matlabroot,'/toolbox/simulink/core/api:', ...
matlabroot,'/toolbox/simulink/core/callbacktracing:', ...
matlabroot,'/toolbox/simulink/core/clone_detection:', ...
matlabroot,'/toolbox/simulink/core/dataclasses:', ...
matlabroot,'/toolbox/simulink/core/dataobjectwizard:', ...
matlabroot,'/toolbox/simulink/core/dialogs:', ...
matlabroot,'/toolbox/simulink/core/general:', ...
matlabroot,'/toolbox/simulink/core/librarylinktool:', ...
matlabroot,'/toolbox/simulink/core/model_transformer:', ...
matlabroot,'/toolbox/simulink/core/sfuncheck:', ...
matlabroot,'/toolbox/simulink/core/slresolve:', ...
matlabroot,'/toolbox/simulink/core/sortingcheck:', ...
matlabroot,'/toolbox/simulink/core/units:', ...
matlabroot,'/toolbox/simulink/dependency/analysis:', ...
matlabroot,'/toolbox/simulink/dependency/app:', ...
matlabroot,'/toolbox/simulink/dependency/buses:', ...
matlabroot,'/toolbox/simulink/dependency/refactoring:', ...
matlabroot,'/toolbox/simulink/diagram/mi/m:', ...
matlabroot,'/toolbox/simulink/engine_interface:', ...
matlabroot,'/toolbox/simulink/file_preview_plugin/matlab:', ...
matlabroot,'/toolbox/simulink/fixedandfloat:', ...
matlabroot,'/toolbox/simulink/fixedandfloat/fxpdemos:', ...
matlabroot,'/toolbox/simulink/fixedandfloat/obsolete:', ...
matlabroot,'/toolbox/simulink/hmi:', ...
matlabroot,'/toolbox/simulink/hmi_lib:', ...
matlabroot,'/toolbox/simulink/legacycode:', ...
matlabroot,'/toolbox/simulink/libcodegen_harness/libcodegen_harness:', ...
matlabroot,'/toolbox/simulink/mask/iconeditor:', ...
matlabroot,'/toolbox/simulink/maskeditor/matlab:', ...
matlabroot,'/toolbox/simulink/mex:', ...
matlabroot,'/toolbox/simulink/modelfinder/src:', ...
matlabroot,'/toolbox/simulink/multisim/main:', ...
matlabroot,'/toolbox/simulink/project/simulinkeditor:', ...
matlabroot,'/toolbox/simulink/project/unsavedchanges:', ...
matlabroot,'/toolbox/simulink/protected_model/core/core:', ...
matlabroot,'/toolbox/simulink/record_playback:', ...
matlabroot,'/toolbox/simulink/record_playback/src:', ...
matlabroot,'/toolbox/simulink/record_playback/ui/studio/config/m:', ...
matlabroot,'/toolbox/simulink/record_playback_lib:', ...
matlabroot,'/toolbox/simulink/runtime_callbacks:', ...
matlabroot,'/toolbox/simulink/sdi:', ...
matlabroot,'/toolbox/simulink/search/mi/m:', ...
matlabroot,'/toolbox/simulink/simdemos:', ...
matlabroot,'/toolbox/simulink/simdemos/aerospace:', ...
matlabroot,'/toolbox/simulink/simdemos/aerospace/lunarWRL:', ...
matlabroot,'/toolbox/simulink/simdemos/automotive:', ...
matlabroot,'/toolbox/simulink/simdemos/automotive/fuelsys:', ...
matlabroot,'/toolbox/simulink/simdemos/automotive/powerwindow:', ...
matlabroot,'/toolbox/simulink/simdemos/dataclasses:', ...
matlabroot,'/toolbox/simulink/simdemos/simfeatures:', ...
matlabroot,'/toolbox/simulink/simdemos/simfeatures/datadictionary:', ...
matlabroot,'/toolbox/simulink/simdemos/simfeatures/modelreference:', ...
matlabroot,'/toolbox/simulink/simdemos/simgeneral:', ...
matlabroot,'/toolbox/simulink/simmanager/fileIO:', ...
matlabroot,'/toolbox/simulink/simulationinput:', ...
matlabroot,'/toolbox/simulink/simulationinput_desktop:', ...
matlabroot,'/toolbox/simulink/simulationinput_proxy:', ...
matlabroot,'/toolbox/simulink/simulationoutput:', ...
matlabroot,'/toolbox/simulink/simulink:', ...
matlabroot,'/toolbox/simulink/simulink/blocksetdesigner/m:', ...
matlabroot,'/toolbox/simulink/simulink/iodata/iofile:', ...
matlabroot,'/toolbox/simulink/simulink/iodata/ioformat:', ...
matlabroot,'/toolbox/simulink/simulink/iodata/iomap:', ...
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/performance:', ...
matlabroot,'/toolbox/simulink/simulink/performance/performancea:', ...
matlabroot,'/toolbox/simulink/simulink/sl_structure_analysis:', ...
matlabroot,'/toolbox/simulink/simulink/slblocksetsdk:', ...
matlabroot,'/toolbox/simulink/simulink/slprofiler:', ...
matlabroot,'/toolbox/simulink/simulink/slproject:', ...
matlabroot,'/toolbox/simulink/simulink/slproject/examples:', ...
matlabroot,'/toolbox/simulink/simulink/slproject/simulink:', ...
matlabroot,'/toolbox/simulink/simulink/slproject/templates:', ...
matlabroot,'/toolbox/simulink/simulink/sltopo:', ...
matlabroot,'/toolbox/simulink/simulink/templates/core:', ...
matlabroot,'/toolbox/simulink/simulink/templates/product:', ...
matlabroot,'/toolbox/simulink/simulink/upgradeadvisor:', ...
matlabroot,'/toolbox/simulink/simulink_data_dictionary/sldd:', ...
matlabroot,'/toolbox/simulink/simulink_export_methods:', ...
matlabroot,'/toolbox/simulink/simulink_hmi_slexportprevious:', ...
matlabroot,'/toolbox/simulink/simulink_udd:', ...
matlabroot,'/toolbox/simulink/sl_async_streaming:', ...
matlabroot,'/toolbox/simulink/sl_graphics_services/tools:', ...
matlabroot,'/toolbox/simulink/sl_solver_profiler:', ...
matlabroot,'/toolbox/simulink/sl_suggestions/m:', ...
matlabroot,'/toolbox/simulink/sl_upgrade_engine:', ...
matlabroot,'/toolbox/simulink/sl_valuesrc:', ...
matlabroot,'/toolbox/simulink/slcheck_exclusioneditor:', ...
matlabroot,'/toolbox/simulink/slcheck_ma_config_editor:', ...
matlabroot,'/toolbox/simulink/slexportprevious:', ...
matlabroot,'/toolbox/simulink/slhistory:', ...
matlabroot,'/toolbox/simulink/sltemplate:', ...
matlabroot,'/toolbox/simulink/sltemplate/toolstrip_plugin/m:', ...
matlabroot,'/toolbox/simulink/slx/m:', ...
matlabroot,'/toolbox/simulink/sta/derivedSignals:', ...
matlabroot,'/toolbox/simulink/sta/editor:', ...
matlabroot,'/toolbox/simulink/sta/editor/ui:', ...
matlabroot,'/toolbox/simulink/sta/repository:', ...
matlabroot,'/toolbox/simulink/sta/repository/util:', ...
matlabroot,'/toolbox/simulink/sta/scenarioconnector:', ...
matlabroot,'/toolbox/simulink/sta/scenarioconnector/ui:', ...
matlabroot,'/toolbox/simulink/sta/scenarioconnector/ui/toolstrip/filesection:', ...
matlabroot,'/toolbox/simulink/sta/scenarioconnector/ui/toolstrip/modelsection:', ...
matlabroot,'/toolbox/simulink/sta/sl_sta_editor_block:', ...
matlabroot,'/toolbox/simulink/sta/sl_sta_webscope:', ...
matlabroot,'/toolbox/simulink/sta/sourceBlocks:', ...
matlabroot,'/toolbox/simulink/sta/ui:', ...
matlabroot,'/toolbox/simulink/sta/ui/mapping:', ...
matlabroot,'/toolbox/simulink/sta/ui/mapping/callbacks:', ...
matlabroot,'/toolbox/simulink/sta/ui/mapping/util:', ...
matlabroot,'/toolbox/simulink/sta/ui/preferences/mapper:', ...
matlabroot,'/toolbox/simulink/sta/ui/toolstrip:', ...
matlabroot,'/toolbox/simulink/sta/ui/toolstrip/help:', ...
matlabroot,'/toolbox/simulink/sta/ui/toolstrip/open:', ...
matlabroot,'/toolbox/simulink/sta/ui/toolstrip/open/streaming:', ...
matlabroot,'/toolbox/simulink/sta/ui/toolstrip/report:', ...
matlabroot,'/toolbox/simulink/sta/ui/toolstrip/session:', ...
matlabroot,'/toolbox/simulink/sysarch/sysarch:', ...
matlabroot,'/toolbox/simulink/types:', ...
matlabroot,'/toolbox/simulink/ui/library_browser/core/m:', ...
matlabroot,'/toolbox/simulink/ui/printing:', ...
matlabroot,'/toolbox/simulink/ui/sl_studio/sl_studio:', ...
matlabroot,'/toolbox/simulink/ui/studio/config/m:', ...
matlabroot,'/toolbox/simulink/ui/sysdoc/core:', ...
matlabroot,'/toolbox/simulink/vmgr/datamodel/web/UI:', ...
matlabroot,'/toolbox/simulink/vmgr/plugin/m:', ...
matlabroot,'/toolbox/simulink/webblocks/core/m:', ...
matlabroot,'/toolbox/simulink/webblocks/customwebblocks/m:', ...
matlabroot,'/toolbox/simulink/webblocks/customwebblocks_lib:', ...
matlabroot,'/toolbox/simulink/webblocks/widgets/m:', ...
matlabroot,'/toolbox/stateflow/coder:', ...
matlabroot,'/toolbox/stateflow/modeladvisor:', ...
matlabroot,'/toolbox/stateflow/reqtable/analysis/mfiles:', ...
matlabroot,'/toolbox/stateflow/reqtable/semantics/mfiles:', ...
matlabroot,'/toolbox/stateflow/sf_file_preview_plugin/matlab:', ...
matlabroot,'/toolbox/stateflow/sftemplates:', ...
matlabroot,'/toolbox/stateflow/stateflow:', ...
matlabroot,'/toolbox/stateflow/stateflow_lib:', ...
matlabroot,'/toolbox/stateflow/ui/studio/config/m:', ...
matlabroot,'/toolbox/rtw/accel:', ...
matlabroot,'/toolbox/rtw/rtw:', ...
matlabroot,'/toolbox/rtw/rtwdemos:', ...
matlabroot,'/toolbox/rtw/rtwdemos/rsimdemos:', ...
matlabroot,'/toolbox/rtw/targets/AUTOSAR/AUTOSAR:', ...
matlabroot,'/toolbox/rtw/targets/AUTOSAR/AUTOSAR/dataclasses:', ...
matlabroot,'/toolbox/rtw/targets/asap2/asap2:', ...
matlabroot,'/toolbox/rtw/targets/asap2/asap2/dataclasses:', ...
matlabroot,'/toolbox/rtw/targets/asap2/asap2/user:', ...
matlabroot,'/toolbox/rtw/targets/common/can/blocks:', ...
matlabroot,'/toolbox/rtw/targets/common/can/blocks/dataclasses:', ...
matlabroot,'/toolbox/rtw/targets/common/can/blocks/tlc_c:', ...
matlabroot,'/toolbox/rtw/targets/common/tgtcommon:', ...
matlabroot,'/toolbox/rtw/targets/connectivity:', ...
matlabroot,'/toolbox/rtw/targets/ecoder:', ...
matlabroot,'/toolbox/rtw/targets/ecoder/ecoderdemos:', ...
matlabroot,'/toolbox/rtw/targets/ecoder/ecoderdemos/dataclasses:', ...
matlabroot,'/toolbox/rtw/targets/mpt:', ...
matlabroot,'/toolbox/rtw/targets/mpt/mpt:', ...
matlabroot,'/toolbox/rtw/targets/mpt/user_specific:', ...
matlabroot,'/toolbox/rtw/targets/pil:', ...
matlabroot,'/examples/5g/data:', ...
matlabroot,'/examples/5g_phased/data:', ...
matlabroot,'/examples/aero/data:', ...
matlabroot,'/examples/aero_satcom/data:', ...
matlabroot,'/examples/aeroblks/data:', ...
matlabroot,'/examples/antenna/data:', ...
matlabroot,'/examples/audio/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/coder_fixedpoint_simulink/data:', ...
matlabroot,'/examples/comm/data:', ...
matlabroot,'/examples/comm_hdlcoder/data:', ...
matlabroot,'/examples/comm_simrf/data:', ...
matlabroot,'/examples/control/data:', ...
matlabroot,'/examples/control_deeplearning/data:', ...
matlabroot,'/examples/controls_id/data:', ...
matlabroot,'/examples/custom_maps/data:', ...
matlabroot,'/examples/daq_stateflow/data:', ...
matlabroot,'/examples/database/data:', ...
matlabroot,'/examples/dds/data:', ...
matlabroot,'/examples/deeplearning_shared/data:', ...
matlabroot,'/examples/driving/data:', ...
matlabroot,'/examples/driving_fusion/data:', ...
matlabroot,'/examples/driving_fusion_nav/data:', ...
matlabroot,'/examples/driving_fusion_nucleo/data:', ...
matlabroot,'/examples/driving_fusion_vision/data:', ...
matlabroot,'/examples/driving_lidar/data:', ...
matlabroot,'/examples/driving_radar/data:', ...
matlabroot,'/examples/driving_radar_fusion/data:', ...
matlabroot,'/examples/driving_stateflow/data:', ...
matlabroot,'/examples/dsp/data:', ...
matlabroot,'/examples/dsp_hdlcoder/data:', ...
matlabroot,'/examples/dsp_nav_fusion/data:', ...
matlabroot,'/examples/dsphdl/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/hdlv_spchdl/data:', ...
matlabroot,'/examples/hdlverifier/data:', ...
matlabroot,'/examples/icomm/data:', ...
matlabroot,'/examples/ident/data:', ...
matlabroot,'/examples/images/data:', ...
matlabroot,'/examples/images_deeplearning/data:', ...
matlabroot,'/examples/imaq/data:', ...
matlabroot,'/examples/instrument/data:', ...
matlabroot,'/examples/labelers_shared/data:', ...
matlabroot,'/examples/lidar/data:', ...
matlabroot,'/examples/lte/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/multibody_deeplearning/data:', ...
matlabroot,'/examples/nav/data:', ...
matlabroot,'/examples/nav_lidar/data:', ...
matlabroot,'/examples/nav_robotics/data:', ...
matlabroot,'/examples/nnet/data:', ...
matlabroot,'/examples/optim/data:', ...
matlabroot,'/examples/parallel/data:', ...
matlabroot,'/examples/pde/data:', ...
matlabroot,'/examples/phased/data:', ...
matlabroot,'/examples/phased_comm/data:', ...
matlabroot,'/examples/phased_dsphdl/data:', ...
matlabroot,'/examples/plantdeployment/data:', ...
matlabroot,'/examples/plccoder/data:', ...
matlabroot,'/examples/predmaint/data:', ...
matlabroot,'/examples/predmaint_shared/data:', ...
matlabroot,'/examples/radar/data:', ...
matlabroot,'/examples/rf/data:', ...
matlabroot,'/examples/rf_serdes/data:', ...
matlabroot,'/examples/rfpcb/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/satcom/data:', ...
matlabroot,'/examples/satcom_whdl/data:', ...
matlabroot,'/examples/serdes/data:', ...
matlabroot,'/examples/shared_driving_fusion_lidar/data:', ...
matlabroot,'/examples/shared_fusion_arduinoio/data:', ...
matlabroot,'/examples/shared_ins/data:', ...
matlabroot,'/examples/shared_nav_satcom/data:', ...
matlabroot,'/examples/shared_positioning/data:', ...
matlabroot,'/examples/shared_radar_fusion/data:', ...
matlabroot,'/examples/shared_robotics_ros/data:', ...
matlabroot,'/examples/shared_scopes/data:', ...
matlabroot,'/examples/shared_sdi/data:', ...
matlabroot,'/examples/shared_soc_visionhdl/data:', ...
matlabroot,'/examples/shared_systemsengineering/data:', ...
matlabroot,'/examples/shared_trajectories/data:', ...
matlabroot,'/examples/shared_uav_aeroblks/data:', ...
matlabroot,'/examples/shared_uav_fusion_radar/data:', ...
matlabroot,'/examples/shared_uav_nvidia/data:', ...
matlabroot,'/examples/shared_vision_driving/data:', ...
matlabroot,'/examples/shared_vnv/data:', ...
matlabroot,'/examples/shared_wlan_bluetooth/data:', ...
matlabroot,'/examples/si/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/simulink_aerospace/data:', ...
matlabroot,'/examples/simulink_automotive/data:', ...
matlabroot,'/examples/simulink_features/data:', ...
matlabroot,'/examples/simulink_general/data:', ...
matlabroot,'/examples/simulink_industrial/data:', ...
matlabroot,'/examples/simulink_masking/data:', ...
matlabroot,'/examples/simulink_messages/data:', ...
matlabroot,'/examples/simulink_variants/data:', ...
matlabroot,'/examples/simulinkcoder/data:', ...
matlabroot,'/examples/simulinktest/data:', ...
matlabroot,'/examples/simulinktest_slrealtime/data:', ...
matlabroot,'/examples/sl3d/data:', ...
matlabroot,'/examples/slcheck/data:', ...
matlabroot,'/examples/slci/data:', ...
matlabroot,'/examples/slcontrol/data:', ...
matlabroot,'/examples/slcontrol_rl/data:', ...
matlabroot,'/examples/slcoverage/data:', ...
matlabroot,'/examples/sldo/data:', ...
matlabroot,'/examples/sldv/data:', ...
matlabroot,'/examples/slrealtime/data:', ...
matlabroot,'/examples/slrequirements/data:', ...
matlabroot,'/examples/sm/data:', ...
matlabroot,'/examples/soc/data:', ...
matlabroot,'/examples/soc_system_composer/data:', ...
matlabroot,'/examples/spc_channel/data:', ...
matlabroot,'/examples/sps/data:', ...
matlabroot,'/examples/stateflow/data:', ...
matlabroot,'/examples/stats/data:', ...
matlabroot,'/examples/subsystem_reference/data:', ...
matlabroot,'/examples/symbolic/data:', ...
matlabroot,'/examples/systemcomposer/data:', ...
matlabroot,'/examples/textanalytics/data:', ...
matlabroot,'/examples/uav/data:', ...
matlabroot,'/examples/uav_ros/data:', ...
matlabroot,'/examples/vdynblks/data:', ...
matlabroot,'/examples/vision/data:', ...
matlabroot,'/examples/vision_uav/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/whdl/data:', ...
matlabroot,'/examples/wlan/data:', ...
matlabroot,'/examples/wlan_phased/data:', ...
matlabroot,'/help/toolbox/comm/examples:', ...
matlabroot,'/help/toolbox/control/examples:', ...
matlabroot,'/help/toolbox/dsp/examples:', ...
matlabroot,'/help/toolbox/robust/examples:', ...
matlabroot,'/help/toolbox/simrf/examples:', ...
matlabroot,'/help/toolbox/slcontrol/examples:', ...
matlabroot,'/help/toolbox/sldo/examples:', ...
matlabroot,'/help/toolbox/vision/examples:', ...
matlabroot,'/platform/pf_internal/m:', ...
matlabroot,'/toolbox/5g/5g:', ...
matlabroot,'/toolbox/aero/aero:', ...
matlabroot,'/toolbox/aero/aircraft:', ...
matlabroot,'/toolbox/aero/astdemos:', ...
matlabroot,'/toolbox/aero/core:', ...
matlabroot,'/toolbox/aero/graphics:', ...
matlabroot,'/toolbox/aero/spacecraft:', ...
matlabroot,'/toolbox/aero/uicomponents:', ...
matlabroot,'/toolbox/aero/uicomponents/plugin/appdesigner:', ...
matlabroot,'/toolbox/aeroblks:', ...
matlabroot,'/toolbox/aeroblks/aeroblks:', ...
matlabroot,'/toolbox/aeroblks/aeroblks/hmi:', ...
matlabroot,'/toolbox/aeroblks/aeroblks/sim3d:', ...
matlabroot,'/toolbox/aeroblks/aeroblksutilities:', ...
matlabroot,'/toolbox/aeroblks/aeroblksutilities/fwdTransformations:', ...
matlabroot,'/toolbox/aeroblks/aerodemos:', ...
matlabroot,'/toolbox/aeroblks/aerodemos/texture:', ...
matlabroot,'/toolbox/aeroblks/flightcontrol:', ...
matlabroot,'/toolbox/aeroblks/flightcontrol/3DOFAirframe:', ...
matlabroot,'/toolbox/aeroblks/flightcontrol/6DOFAirframe:', ...
matlabroot,'/toolbox/aeroblks/spacecraft/analysis:', ...
matlabroot,'/toolbox/aeroblks/spacecraft/block_libraries:', ...
matlabroot,'/toolbox/aeroblks/spacecraft/templates:', ...
matlabroot,'/toolbox/aeroblks/spacecraft/templates/visualization:', ...
matlabroot,'/toolbox/aeroblks/templates:', ...
matlabroot,'/toolbox/alm/artifact_service/ml:', ...
matlabroot,'/toolbox/alm/handler_service_interface/ml:', ...
matlabroot,'/toolbox/alm/mcos_utils/ml:', ...
matlabroot,'/toolbox/alm/project_services/ml:', ...
matlabroot,'/toolbox/alm/slreq_handlers/ml:', ...
matlabroot,'/toolbox/alm/sltest_handlers/ml:', ...
matlabroot,'/toolbox/alm/stateflow_handlers/ml:', ...
matlabroot,'/toolbox/alm/ui_service/ml:', ...
matlabroot,'/toolbox/alm/zc_handlers/ml:', ...
matlabroot,'/toolbox/antenna/antenna:', ...
matlabroot,'/toolbox/antenna/antenna/antennautilities:', ...
matlabroot,'/toolbox/antenna/antenna/meshutilities:', ...
matlabroot,'/toolbox/antenna/antenna/optimutilities/models:', ...
matlabroot,'/toolbox/antenna/antenna/optimutilities/sadea:', ...
matlabroot,'/toolbox/antenna/antenna/optimutilities/sadeautils:', ...
matlabroot,'/toolbox/audio/audio:', ...
matlabroot,'/toolbox/audio/audio/compiled:', ...
matlabroot,'/toolbox/audio/audioapps/audioapps:', ...
matlabroot,'/toolbox/audio/audioapps/audioapputils:', ...
matlabroot,'/toolbox/audio/audioapps/audiolabeler:', ...
matlabroot,'/toolbox/audio/audioexamples:', ...
matlabroot,'/toolbox/audio/audioutilities:', ...
matlabroot,'/toolbox/audio/audioutilities/audioinit:', ...
matlabroot,'/toolbox/audio/audioutilities/audiomex:', ...
matlabroot,'/toolbox/audio/samples:', ...
matlabroot,'/toolbox/audio/templates:', ...
matlabroot,'/toolbox/autoblks:', ...
matlabroot,'/toolbox/autoblks/autoblks:', ...
matlabroot,'/toolbox/autoblks/autoblksreference:', ...
matlabroot,'/toolbox/autoblks/autoblksreference/images:', ...
matlabroot,'/toolbox/autoblks/autoblksshared:', ...
matlabroot,'/toolbox/autoblks/autoblksshared/mbc:', ...
matlabroot,'/toolbox/autoblks/autoblksshared/mbctemplates:', ...
matlabroot,'/toolbox/autoblks/autoblksutilities:', ...
matlabroot,'/toolbox/autoblks/autoblksutilities/mbctemplates:', ...
matlabroot,'/toolbox/autoblks/autodemos:', ...
matlabroot,'/toolbox/autoblks_utils:', ...
matlabroot,'/toolbox/bioinfo/biodemos:', ...
matlabroot,'/toolbox/bioinfo/bioinfo:', ...
matlabroot,'/toolbox/bioinfo/bioinfodata:', ...
matlabroot,'/toolbox/bioinfo/biolearning:', ...
matlabroot,'/toolbox/bioinfo/biomatrices:', ...
matlabroot,'/toolbox/bioinfo/bowtie2:', ...
matlabroot,'/toolbox/bioinfo/bwa:', ...
matlabroot,'/toolbox/bioinfo/cufflinks:', ...
matlabroot,'/toolbox/bioinfo/graphtheory:', ...
matlabroot,'/toolbox/bioinfo/mass_spec:', ...
matlabroot,'/toolbox/bioinfo/microarray:', ...
matlabroot,'/toolbox/bioinfo/proteins:', ...
matlabroot,'/toolbox/bluetooth:', ...
matlabroot,'/toolbox/bluetooth/ble:', ...
matlabroot,'/toolbox/bluetooth/bluetooth:', ...
matlabroot,'/toolbox/classdiagram/app/core:', ...
matlabroot,'/toolbox/classdiagram/app/mcos:', ...
matlabroot,'/toolbox/clone_detection/clonedetection_exclusion_editor/clonedetection_exclusion_editor_m:', ...
matlabroot,'/toolbox/clone_detection_app/m:', ...
matlabroot,'/toolbox/clonedetection:', ...
matlabroot,'/toolbox/coder/advisor:', ...
matlabroot,'/toolbox/coder/autosar:', ...
matlabroot,'/toolbox/coder/autosar/blocks:', ...
matlabroot,'/toolbox/coder/autosar/xrelexport:', ...
matlabroot,'/toolbox/coder/autosar_templates:', ...
matlabroot,'/toolbox/coder/clang_api/interface/ml:', ...
matlabroot,'/toolbox/coder/codedescriptor_core:', ...
matlabroot,'/toolbox/coder/codegendemos:', ...
matlabroot,'/toolbox/coder/coder:', ...
matlabroot,'/toolbox/coder/coder_halide:', ...
matlabroot,'/toolbox/coder/coderapp/cfb/matlab:', ...
matlabroot,'/toolbox/coder/coderapp/coderconfig/ml:', ...
matlabroot,'/toolbox/coder/coderapp/common/ml:', ...
matlabroot,'/toolbox/coder/coderapp/config/ml:', ...
matlabroot,'/toolbox/coder/coderapp/configui/ml:', ...
matlabroot,'/toolbox/coder/coderapp/form/ml:', ...
matlabroot,'/toolbox/coder/coderapp/screener/ml:', ...
matlabroot,'/toolbox/coder/coderapp/screener_cfb/matlab:', ...
matlabroot,'/toolbox/coder/coderapp/types/ml:', ...
matlabroot,'/toolbox/coder/coderapp/utils/ml:', ...
matlabroot,'/toolbox/coder/compile:', ...
matlabroot,'/toolbox/coder/compile/codebuildtests:', ...
matlabroot,'/toolbox/coder/compile/tools/registry:', ...
matlabroot,'/toolbox/coder/connectivity:', ...
matlabroot,'/toolbox/coder/connectivity_core:', ...
matlabroot,'/toolbox/coder/connectivity_targetservices/common:', ...
matlabroot,'/toolbox/coder/connectivity_targetservices/connectivityconfig:', ...
matlabroot,'/toolbox/coder/connectivity_targetservices/dispatch:', ...
matlabroot,'/toolbox/coder/connectivity_targetservices/targetframework:', ...
matlabroot,'/toolbox/coder/coverage:', ...
matlabroot,'/toolbox/coder/embeddedcoder:', ...
matlabroot,'/toolbox/coder/embeddedcoder_templates:', ...
matlabroot,'/toolbox/coder/extmode/xcp_classic_trig/plugin/m:', ...
matlabroot,'/toolbox/coder/float2fixed:', ...
matlabroot,'/toolbox/coder/float2fixed/custom_logger:', ...
matlabroot,'/toolbox/coder/float2fixed/demos:', ...
matlabroot,'/toolbox/coder/float2fixed/dmm_emlauthoring:', ...
matlabroot,'/toolbox/coder/float2fixed/mathlib:', ...
matlabroot,'/toolbox/coder/foundation:', ...
matlabroot,'/toolbox/coder/foundation/build/tools/registry:', ...
matlabroot,'/toolbox/coder/foundation/templates:', ...
matlabroot,'/toolbox/coder/foundation/tfl:', ...
matlabroot,'/toolbox/coder/foundation/tfl/AUTOSAR/AUTOSAR4p0/IFL:', ...
matlabroot,'/toolbox/coder/foundation/tfl/AUTOSAR/AUTOSAR4p0/IFX:', ...
matlabroot,'/toolbox/coder/foundation/tfl/gui:', ...
matlabroot,'/toolbox/coder/half:', ...
matlabroot,'/toolbox/coder/matlabcoder:', ...
matlabroot,'/toolbox/coder/matlabcoder/templates:', ...
matlabroot,'/toolbox/coder/objectives:', ...
matlabroot,'/toolbox/coder/profile:', ...
matlabroot,'/toolbox/coder/rtiostream:', ...
matlabroot,'/toolbox/coder/simulinkcoder:', ...
matlabroot,'/toolbox/coder/simulinkcoder/cgv/API:', ...
matlabroot,'/toolbox/coder/simulinkcoder/targets:', ...
matlabroot,'/toolbox/coder/simulinkcoder/toolstripHW/m:', ...
matlabroot,'/toolbox/coder/simulinkcoder/xil/toolstrip/m:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/code_perspective:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/core:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/dplDlg:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/quick_start/m:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/report:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/sdp/m:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/slfpc:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/toolstrip/m:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/ui:', ...
matlabroot,'/toolbox/coder/simulinkcoder_core:', ...
matlabroot,'/toolbox/coder/simulinkcoder_core/templates:', ...
matlabroot,'/toolbox/coder/sltoolstrip_base_hw/m:', ...
matlabroot,'/toolbox/coder/targetreg:', ...
matlabroot,'/toolbox/coder/trace:', ...
matlabroot,'/toolbox/coder/wizard:', ...
matlabroot,'/toolbox/coder/xcp:', ...
matlabroot,'/toolbox/coder/xcp_on_can:', ...
matlabroot,'/toolbox/coder/xrel:', ...
matlabroot,'/toolbox/coder/xrelimport:', ...
matlabroot,'/toolbox/collaboration/comments/mi/m:', ...
matlabroot,'/toolbox/comm/cdma2000:', ...
matlabroot,'/toolbox/comm/comm:', ...
matlabroot,'/toolbox/comm/comm/compiled:', ...
matlabroot,'/toolbox/comm/comm/wavegenApp:', ...
matlabroot,'/toolbox/comm/commdemos:', ...
matlabroot,'/toolbox/comm/commdeprecated:', ...
matlabroot,'/toolbox/comm/commhdloptimized:', ...
matlabroot,'/toolbox/comm/commhdloptimized/commutilities:', ...
matlabroot,'/toolbox/comm/commutilities:', ...
matlabroot,'/toolbox/comm/commutilities/comminit:', ...
matlabroot,'/toolbox/comm/commutilities/commmex:', ...
matlabroot,'/toolbox/comm/templates:', ...
matlabroot,'/toolbox/comm/webscopes/constellationdiagramutils:', ...
matlabroot,'/toolbox/comm/webscopes/mlconstellationdiagram:', ...
matlabroot,'/toolbox/comm/webscopes/slconstellationdiagram:', ...
matlabroot,'/toolbox/comparisons/binary/mldesktop/matlab:', ...
matlabroot,'/toolbox/comparisons/folder/mldesktop/matlab:', ...
matlabroot,'/toolbox/comparisons/highlight/matlab:', ...
matlabroot,'/toolbox/comparisons/mat/mldesktop/matlab:', ...
matlabroot,'/toolbox/comparisons/mldesktop/action_ui/matlab:', ...
matlabroot,'/toolbox/comparisons/mldesktop/matlab:', ...
matlabroot,'/toolbox/comparisons/text/mldesktop/matlab:', ...
matlabroot,'/toolbox/comparisons/text/view/rptgen/matlab:', ...
matlabroot,'/toolbox/comparisons/view/edits:', ...
matlabroot,'/toolbox/comparisons/view/mf0edits:', ...
matlabroot,'/toolbox/comparisons/view/web3/matlab:', ...
matlabroot,'/toolbox/comparisons/zip/mldesktop/matlab:', ...
matlabroot,'/toolbox/compiler/userinfo:', ...
matlabroot,'/toolbox/control/control:', ...
matlabroot,'/toolbox/control/ctrlanalysis:', ...
matlabroot,'/toolbox/control/ctrldemos:', ...
matlabroot,'/toolbox/control/ctrldesign:', ...
matlabroot,'/toolbox/control/ctrlguis:', ...
matlabroot,'/toolbox/control/ctrlmodels:', ...
matlabroot,'/toolbox/control/ctrlobsolete:', ...
matlabroot,'/toolbox/control/ctrlplots:', ...
matlabroot,'/toolbox/control/ctrlutil:', ...
matlabroot,'/toolbox/curvefit/curvefit:', ...
matlabroot,'/toolbox/curvefit/curvefitdemos:', ...
matlabroot,'/toolbox/curvefit/curvefitterapp:', ...
matlabroot,'/toolbox/curvefit/sftoolgui:', ...
matlabroot,'/toolbox/curvefit/splines:', ...
matlabroot,'/toolbox/da:', ...
matlabroot,'/toolbox/dashboard/algorithms/ml:', ...
matlabroot,'/toolbox/dashboard/api/ml:', ...
matlabroot,'/toolbox/dashboard/datamodel_ml/ml:', ...
matlabroot,'/toolbox/dashboard/demos:', ...
matlabroot,'/toolbox/dashboard/fxp_algorithm_factory/ml:', ...
matlabroot,'/toolbox/dashboard/report_service/ml:', ...
matlabroot,'/toolbox/dashboard/slcov_algorithm_factory/ml:', ...
matlabroot,'/toolbox/dashboard/slreq_algorithm_factory/ml:', ...
matlabroot,'/toolbox/dashboard/sltest_algorithm_factory/ml:', ...
matlabroot,'/toolbox/dashboard/ui/ml:', ...
matlabroot,'/toolbox/dashboard/uidatamodel/ml:', ...
matlabroot,'/toolbox/database/database:', ...
matlabroot,'/toolbox/database/dbdata:', ...
matlabroot,'/toolbox/datafeed/datafeed:', ...
matlabroot,'/toolbox/datafeed/datafeeddemos:', ...
matlabroot,'/toolbox/datafeed/dfgui:', ...
matlabroot,'/toolbox/dds/adaptor:', ...
matlabroot,'/toolbox/dds/coder:', ...
matlabroot,'/toolbox/dds/datamodel:', ...
matlabroot,'/toolbox/dds/dds:', ...
matlabroot,'/toolbox/dds/src:', ...
matlabroot,'/toolbox/dds/toolstrip:', ...
matlabroot,'/toolbox/dds/vendor/eprosima:', ...
matlabroot,'/toolbox/dds/vendor/rti:', ...
matlabroot,'/toolbox/dds/vendor/rtimicro:', ...
matlabroot,'/toolbox/diagram/editor/web/m:', ...
matlabroot,'/toolbox/diagram/layout/treelayout:', ...
matlabroot,'/toolbox/dig/src:', ...
matlabroot,'/toolbox/driving/driving:', ...
matlabroot,'/toolbox/driving/drivingdata:', ...
matlabroot,'/toolbox/driving/drivingdemos:', ...
matlabroot,'/toolbox/driving/drivingutilities:', ...
matlabroot,'/toolbox/dsp/dsp:', ...
matlabroot,'/toolbox/dsp/dsp/compiled:', ...
matlabroot,'/toolbox/dsp/dspdemos:', ...
matlabroot,'/toolbox/dsp/dsphdl:', ...
matlabroot,'/toolbox/dsp/dsphdl/dsputilities:', ...
matlabroot,'/toolbox/dsp/dsputilities:', ...
matlabroot,'/toolbox/dsp/dsputilities/crl:', ...
matlabroot,'/toolbox/dsp/dsputilities/dspinit:', ...
matlabroot,'/toolbox/dsp/dsputilities/dspmex:', ...
matlabroot,'/toolbox/dsp/dsputilities/dsptoc:', ...
matlabroot,'/toolbox/dsp/dsputilities/dsptransform:', ...
matlabroot,'/toolbox/dsp/dsputilities/dspupgrade:', ...
matlabroot,'/toolbox/dsp/filterdesign:', ...
matlabroot,'/toolbox/dsp/halidesim:', ...
matlabroot,'/toolbox/dsp/templates:', ...
matlabroot,'/toolbox/dsphdl/dsphdl:', ...
matlabroot,'/toolbox/dsphdl/dsphdlutilities:', ...
matlabroot,'/toolbox/dsphdl/dsphdlutilities/dsphdltransform:', ...
matlabroot,'/toolbox/econ/econ:', ...
matlabroot,'/toolbox/econ/econGUIs:', ...
matlabroot,'/toolbox/econ/econdata:', ...
matlabroot,'/toolbox/edalink/edalink:', ...
matlabroot,'/toolbox/edalink/extensions/incisive/incisive:', ...
matlabroot,'/toolbox/edalink/extensions/incisive/incisivedemos:', ...
matlabroot,'/toolbox/edalink/extensions/modelsim/modelsim:', ...
matlabroot,'/toolbox/edalink/extensions/modelsim/modelsimdemos:', ...
matlabroot,'/toolbox/edalink/extensions/vivadosim/vivadosim:', ...
matlabroot,'/toolbox/edalink/foundation/hdllink:', ...
matlabroot,'/toolbox/edalink/sltoolstrip/m:', ...
matlabroot,'/toolbox/eml/eml:', ...
matlabroot,'/toolbox/evolutions/evolutions:', ...
matlabroot,'/toolbox/experiments/experiments:', ...
matlabroot,'/toolbox/finance/bigdata:', ...
matlabroot,'/toolbox/finance/calendar:', ...
matlabroot,'/toolbox/finance/finance:', ...
matlabroot,'/toolbox/finance/findemos:', ...
matlabroot,'/toolbox/finance/finsupport:', ...
matlabroot,'/toolbox/finance/ftseries:', ...
matlabroot,'/toolbox/fininst/fininst:', ...
matlabroot,'/toolbox/fininst/fininstdemos:', ...
matlabroot,'/toolbox/fininst/fininstguis:', ...
matlabroot,'/toolbox/fixedpoint/embeddedlib:', ...
matlabroot,'/toolbox/fixedpoint/embeddedlibhdl:', ...
matlabroot,'/toolbox/fixedpoint/fidemos:', ...
matlabroot,'/toolbox/fixedpoint/fixedpoint:', ...
matlabroot,'/toolbox/fixedpoint/fixedpointconverter:', ...
matlabroot,'/toolbox/fixedpoint/fixedpointtool:', ...
matlabroot,'/toolbox/fixedpoint/simulinkfixedpoint:', ...
matlabroot,'/toolbox/fixedpoint/ui/nedFunctionApproximationTool:', ...
matlabroot,'/toolbox/fixedpoint/ui/nedNumericTypeScope:', ...
matlabroot,'/toolbox/fixedpoint/ui/nedVisuals:', ...
matlabroot,'/toolbox/fixpoint:', ...
matlabroot,'/toolbox/fixpoint/fixed:', ...
matlabroot,'/toolbox/fixpoint/fxptopo:', ...
matlabroot,'/toolbox/fixpoint/restorepoint:', ...
matlabroot,'/toolbox/fusion/fusion:', ...
matlabroot,'/toolbox/fusion/fusiondata:', ...
matlabroot,'/toolbox/fusion/simulink:', ...
matlabroot,'/toolbox/fuzzy/fuzdemos:', ...
matlabroot,'/toolbox/fuzzy/fuzzy:', ...
matlabroot,'/toolbox/fuzzy/fuzzyutil:', ...
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:', ...