-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpathdef.m
More file actions
1120 lines (1113 loc) · 62.2 KB
/
pathdef.m
File metadata and controls
1120 lines (1113 loc) · 62.2 KB
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 %%%
'/home/xuning/Documents/MATLAB/CaptureFigVid:', ...
'/home/xuning/Documents/MATLAB/CaptureFigVid/html:', ...
'/home/xuning/Documents/MATLAB/STLRead:', ...
'/home/xuning/Documents/MATLAB/STLRead/html:', ...
'/home/xuning/Documents/MATLAB/altmany-export_fig-dd9397c:', ...
'/home/xuning/Documents/MATLAB/lightspeed:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/branches:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/hooks:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/info:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/logs:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/logs/refs:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/logs/refs/heads:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/logs/refs/remotes:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/logs/refs/remotes/origin:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/objects:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/objects/info:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/objects/pack:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/refs:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/refs/heads:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/refs/remotes:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/refs/remotes/origin:', ...
'/home/xuning/Documents/MATLAB/lightspeed/.git/refs/tags:', ...
'/home/xuning/Documents/MATLAB/lightspeed/graphics:', ...
'/home/xuning/Documents/MATLAB/lightspeed/tests:', ...
'/home/xuning/Documents/MATLAB/matlab_rosbag-0.5.0-linux64:', ...
'/home/xuning/Documents/MATLAB/matlab_rosbag-0.5.0-linux64/example:', ...
'/home/xuning/Documents/MATLAB/scottclowe-matlab-schemer-f8115af:', ...
'/home/xuning/Documents/MATLAB/scottclowe-matlab-schemer-f8115af/develop:', ...
'/home/xuning/Documents/MATLAB/scottclowe-matlab-schemer-f8115af/schemes:', ...
'/home/xuning/Documents/MATLAB/scottclowe-matlab-schemer-f8115af/schemes/screenshots:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/html:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/mex:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/mex/fheap:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/mex/fheap/.svn:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/mex/fheap/.svn/prop-base:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/mex/fheap/.svn/text-base:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/off:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/off/.svn:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/off/.svn/prop-base:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/off/.svn/text-base:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/tests:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/tests/.svn:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/tests/.svn/prop-base:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/tests/.svn/text-base:', ...
'/home/xuning/Documents/MATLAB/toolbox_graph/toolbox:', ...
'/home/xuning/rislab/control_arch_test_suite/matlab/misc:', ...
'/home/xuning/rislab/control_arch_test_suite/matlab/plot_utils:', ...
'/home/xuning/rislab/control_arch_test_suite/matlab/msg_types:', ...
'/home/xuning/code/HDPHMM_HDPSLDS_toolbox:', ...
'/home/xuning/code/HDPHMM_HDPSLDS_toolbox/relabeler:', ...
'/home/xuning/code/HDPHMM_HDPSLDS_toolbox/utilities:', ...
matlabroot,'/toolbox/matlab/datatypes:', ...
matlabroot,'/toolbox/matlab/mvm:', ...
matlabroot,'/toolbox/matlab/iofun:', ...
matlabroot,'/toolbox/matlab/validators:', ...
matlabroot,'/toolbox/matlab/ops:', ...
matlabroot,'/toolbox/matlab/sparfun:', ...
matlabroot,'/toolbox/matlab/elmat:', ...
matlabroot,'/toolbox/matlab/general:', ...
matlabroot,'/toolbox/matlab/lang:', ...
matlabroot,'/toolbox/matlab/randfun:', ...
matlabroot,'/toolbox/matlab/datafun:', ...
matlabroot,'/toolbox/matlab/matfun:', ...
matlabroot,'/toolbox/matlab/elfun:', ...
matlabroot,'/toolbox/matlab/polyfun:', ...
matlabroot,'/toolbox/matlab/specfun:', ...
matlabroot,'/toolbox/matlab/funfun:', ...
matlabroot,'/toolbox/matlab/timefun:', ...
matlabroot,'/toolbox/matlab/strfun:', ...
matlabroot,'/toolbox/matlab/graph2d:', ...
matlabroot,'/toolbox/matlab/graph3d:', ...
matlabroot,'/toolbox/matlab/graphics:', ...
matlabroot,'/toolbox/matlab/graphics/obsolete:', ...
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/codeanalysis/analysis:', ...
matlabroot,'/toolbox/matlab/helptools:', ...
matlabroot,'/toolbox/matlab/maps:', ...
matlabroot,'/toolbox/matlab/graphics/maps:', ...
matlabroot,'/toolbox/matlab/testframework/unittest/core:', ...
matlabroot,'/toolbox/matlab/testframework/obsolete:', ...
matlabroot,'/toolbox/matlab/winfun:', ...
matlabroot,'/toolbox/matlab/winfun/NET:', ...
matlabroot,'/toolbox/matlab/mapreduceio:', ...
matlabroot,'/toolbox/matlab/parallel:', ...
matlabroot,'/toolbox/matlab/testframework/uitest:', ...
matlabroot,'/toolbox/matlab/testframework/measurement/core:', ...
matlabroot,'/toolbox/matlab/hardware/stubs:', ...
matlabroot,'/toolbox/hdlcoder/matlabhdlcoder/matlabhdlcoder:', ...
matlabroot,'/toolbox/hdlcoder/matlabhdlcoder:', ...
matlabroot,'/toolbox/matlab/optimfun:', ...
matlabroot,'/toolbox/matlab/verctrl:', ...
matlabroot,'/toolbox/matlab/testframework/unittest/ext:', ...
matlabroot,'/toolbox/local:', ...
matlabroot,'/toolbox/matlab/testframework/mock/core:', ...
matlabroot,'/toolbox/matlab/datastoreio:', ...
matlabroot,'/toolbox/matlab/graphfun:', ...
matlabroot,'/toolbox/matlab/icons:', ...
matlabroot,'/toolbox/matlab/datamanager:', ...
matlabroot,'/toolbox/matlab/testframework/unittest/parallel:', ...
matlabroot,'/toolbox/matlab/bigdata:', ...
matlabroot,'/toolbox/matlab/testframework/uiautomation:', ...
matlabroot,'/toolbox/matlab/depfun:', ...
matlabroot,'/toolbox/matlab/demos:', ...
matlabroot,'/toolbox/matlab/testframework/ui/matlab:', ...
matlabroot,'/toolbox/matlab/testframework/performance/core:', ...
matlabroot,'/toolbox/matlab/images:', ...
matlabroot,'/toolbox/matlab/guide:', ...
matlabroot,'/toolbox/matlab/codetools:', ...
matlabroot,'/toolbox/matlab/codetools/embeddedoutputs:', ...
matlabroot,'/toolbox/matlab/testframework/measurement/ext:', ...
matlabroot,'/toolbox/simulink/sldependency:', ...
matlabroot,'/toolbox/simulink/simdemos/industrial:', ...
matlabroot,'/toolbox/simulink/ui/library_browser/core/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/simdemos/automotive/powerwindow:', ...
matlabroot,'/toolbox/simulink/diagram/mi/m:', ...
matlabroot,'/toolbox/simulink/simulink/templates/core:', ...
matlabroot,'/toolbox/simulink/simdemos/aerospace:', ...
matlabroot,'/toolbox/simulink/simdemos/dataclasses:', ...
matlabroot,'/toolbox/simulink/simdemos:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/core:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/slfpc:', ...
matlabroot,'/toolbox/simulink/components:', ...
matlabroot,'/toolbox/simulink/dee:', ...
matlabroot,'/toolbox/rtw/rtwdemos:', ...
matlabroot,'/toolbox/rtw/rtwdemos/rsimdemos:', ...
matlabroot,'/toolbox/simulink/blocks/library:', ...
matlabroot,'/toolbox/simulink/blocks/library/simulinkcoder:', ...
matlabroot,'/toolbox/simulink/blocks/obsolete:', ...
matlabroot,'/toolbox/simulink/simdemos/automotive:', ...
matlabroot,'/toolbox/simulink/simulink_export_methods:', ...
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/simulink/simulink/templates/product:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/ui:', ...
matlabroot,'/toolbox/slde/examples:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/code_perspective:', ...
matlabroot,'/toolbox/simulink/simdemos/simgeneral:', ...
matlabroot,'/toolbox/simulink/simdemos/automotive/fuelsys:', ...
matlabroot,'/toolbox/simulink/sdi:', ...
matlabroot,'/toolbox/simulink/ui/sysdoc/core:', ...
matlabroot,'/toolbox/simulink/webblocks/widgets/m:', ...
matlabroot,'/toolbox/slde/slde:', ...
matlabroot,'/toolbox/slde/slde/resources:', ...
matlabroot,'/toolbox/simulink/simulink/frameedit:', ...
matlabroot,'/toolbox/rtw/accel:', ...
matlabroot,'/toolbox/coder/simulinkcoder_core:', ...
matlabroot,'/toolbox/coder/simulinkcoder_core/templates:', ...
matlabroot,'/toolbox/coder/objectives:', ...
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/resources:', ...
matlabroot,'/toolbox/simulink/simulink/model_transformer:', ...
matlabroot,'/toolbox/simulink/simulink/clone_detection:', ...
matlabroot,'/toolbox/simulink/simulink/sfuncheck:', ...
matlabroot,'/toolbox/simulink/simulink/string:', ...
matlabroot,'/toolbox/simulinktest/core/testsequence/testsequence:', ...
matlabroot,'/toolbox/coder/simulinkcoder_app/backend:', ...
matlabroot,'/toolbox/simulink/sysarch/sysarch:', ...
matlabroot,'/toolbox/simulink/hmi:', ...
matlabroot,'/toolbox/simulink/ui/studio/config/m:', ...
matlabroot,'/toolbox/simulinktest/core/simharness/simharness:', ...
matlabroot,'/toolbox/simulinktest/core/injector/injector:', ...
matlabroot,'/toolbox/coder/advisor:', ...
matlabroot,'/toolbox/simulink/simdemos/simfeatures:', ...
matlabroot,'/toolbox/simulink/simdemos/simfeatures/modelreference:', ...
matlabroot,'/toolbox/simulink/simdemos/simfeatures/datadictionary:', ...
matlabroot,'/toolbox/stateflow/stateflow:', ...
matlabroot,'/toolbox/stateflow/coder:', ...
matlabroot,'/toolbox/stateflow/sfdemos:', ...
matlabroot,'/toolbox/stateflow/sftemplates:', ...
matlabroot,'/toolbox/physmod/pe/pedemos:', ...
matlabroot,'/toolbox/physmod/pe/pedemos/doc:', ...
matlabroot,'/examples/elec:', ...
matlabroot,'/toolbox/physmod/sdl/advisor/m:', ...
matlabroot,'/toolbox/coder/xrel:', ...
matlabroot,'/toolbox/compiler/java:', ...
matlabroot,'/toolbox/physmod/simscape/compiler/sli/m:', ...
matlabroot,'/examples/fininst:', ...
matlabroot,'/toolbox/matlab/datatools/workspacebrowser/matlab:', ...
matlabroot,'/toolbox/matlab/configtools:', ...
matlabroot,'/toolbox/shared/commRFexamples:', ...
matlabroot,'/toolbox/physmod/simscape/templates:', ...
matlabroot,'/toolbox/physmod/pe/library/m:', ...
matlabroot,'/toolbox/shared/system/coder:', ...
matlabroot,'/toolbox/shared/aeroblks:', ...
matlabroot,'/toolbox/shared/aeroblks/aeroblksutilities:', ...
matlabroot,'/toolbox/shared/tlmgenerator/foundation/tlmgeneratordemos:', ...
matlabroot,'/toolbox/comm/templates:', ...
matlabroot,'/toolbox/physmod/common/dataservices/gui/m:', ...
matlabroot,'/toolbox/shared/testmeaslib/general:', ...
matlabroot,'/toolbox/simulink/fixedandfloat/fxpdemos:', ...
matlabroot,'/toolbox/edalink/extensions/incisive/incisive:', ...
matlabroot,'/examples/instrument:', ...
matlabroot,'/toolbox/shared/sl_messages:', ...
matlabroot,'/toolbox/signal/signalanalyzer:', ...
matlabroot,'/toolbox/physmod/fluids/fluids:', ...
matlabroot,'/toolbox/shared/supportpkgservices/legacysupportpkginfo:', ...
matlabroot,'/toolbox/shared/supportpkgservices/installservices:', ...
matlabroot,'/toolbox/shared/supportpkgservices/supportpackageroot:', ...
matlabroot,'/toolbox/shared/supportpkgservices/installedapi:', ...
matlabroot,'/toolbox/instrument/instrumentdemos:', ...
matlabroot,'/toolbox/physmod/sm/gui/m:', ...
matlabroot,'/toolbox/shared/simulation_data_repository:', ...
matlabroot,'/toolbox/physmod/sh/advisor/m:', ...
matlabroot,'/toolbox/comm/cdma2000:', ...
matlabroot,'/toolbox/matlab/datatools/inspector/matlab:', ...
matlabroot,'/toolbox/matlab/webcam:', ...
matlabroot,'/toolbox/shared/hwmanager/hwconnection:', ...
matlabroot,'/examples/simulink:', ...
matlabroot,'/toolbox/simrf/simrfV2demos:', ...
matlabroot,'/toolbox/shared/tlmgenerator/foundation:', ...
matlabroot,'/toolbox/shared/tlmgenerator/foundation/rtw:', ...
matlabroot,'/toolbox/shared/slreportgen/rpt:', ...
matlabroot,'/toolbox/shared/slreportgen/rpt/rpt:', ...
matlabroot,'/toolbox/nnet/nndemos:', ...
matlabroot,'/toolbox/nnet/nndemos/nndatasets:', ...
matlabroot,'/examples/globaloptim:', ...
matlabroot,'/toolbox/matlab/datatools/plotstab/matlab:', ...
matlabroot,'/toolbox/fixedpoint/fixedpointtool:', ...
matlabroot,'/toolbox/simulink/simulink/performance:', ...
matlabroot,'/toolbox/simulink/simulink/performance/performancea:', ...
matlabroot,'/toolbox/wavelet/wavedemo:', ...
matlabroot,'/toolbox/simulink/sta/sl_sta_editor_block:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner/interface:', ...
matlabroot,'/toolbox/shared/dataflow/dataflowvisualization:', ...
matlabroot,'/toolbox/matlab/pathtool:', ...
matlabroot,'/toolbox/comm/commhdloptimized:', ...
matlabroot,'/toolbox/comm/commhdloptimized/commutilities:', ...
matlabroot,'/toolbox/stats/bayesoptim:', ...
matlabroot,'/toolbox/stats/bigdata:', ...
matlabroot,'/toolbox/stats/classreg:', ...
matlabroot,'/toolbox/stats/clustering:', ...
matlabroot,'/toolbox/stats/featlearn:', ...
matlabroot,'/toolbox/stats/stats:', ...
matlabroot,'/examples/stats_featured:', ...
matlabroot,'/help/toolbox/control/examples:', ...
matlabroot,'/toolbox/idelink/idelinkdemos:', ...
matlabroot,'/toolbox/shared/dsp/scopes:', ...
matlabroot,'/toolbox/idelink/extensions/ticcs:', ...
matlabroot,'/toolbox/idelink/extensions/ticcs/ccsblks:', ...
matlabroot,'/toolbox/idelink/extensions/ticcs/ccslinkblks:', ...
matlabroot,'/toolbox/idelink/extensions/ticcs/ccslinkblks/rtdxsimblks:', ...
matlabroot,'/toolbox/idelink/extensions/ticcs/mdlinfo:', ...
matlabroot,'/toolbox/idelink/extensions/ticcs/util:', ...
matlabroot,'/toolbox/idelink/extensions/ticcs/rtw:', ...
matlabroot,'/toolbox/idelink/extensions/ticcs/envChecker:', ...
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/autoblks_utils:', ...
matlabroot,'/toolbox/curvefit/curvefit:', ...
matlabroot,'/toolbox/curvefit/splines:', ...
matlabroot,'/toolbox/curvefit/sftoolgui:', ...
matlabroot,'/toolbox/fininst/fininstdemos:', ...
matlabroot,'/toolbox/realtime:', ...
matlabroot,'/toolbox/realtime/realtime:', ...
matlabroot,'/toolbox/realtime/realtime/rtw:', ...
matlabroot,'/toolbox/simevents/simevents:', ...
matlabroot,'/toolbox/simevents/simevents/icons:', ...
matlabroot,'/toolbox/bioinfo/biodemos:', ...
matlabroot,'/toolbox/mps/json:', ...
matlabroot,'/help/toolbox/comm/examples:', ...
matlabroot,'/toolbox/matlab/system/editor:', ...
matlabroot,'/toolbox/shared/diagnostic:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/restful:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices:', ...
matlabroot,'/toolbox/simulink/sltemplate:', ...
matlabroot,'/toolbox/coder/wizard:', ...
matlabroot,'/toolbox/shared/imaqlib:', ...
matlabroot,'/toolbox/finance/calendar:', ...
matlabroot,'/toolbox/finance/finance:', ...
matlabroot,'/toolbox/finance/finsupport:', ...
matlabroot,'/toolbox/finance/ftseries:', ...
matlabroot,'/toolbox/matlab/connector2/file:', ...
matlabroot,'/toolbox/shared/dsp/simulink/dsp:', ...
matlabroot,'/examples/fuzzy:', ...
matlabroot,'/toolbox/pde:', ...
matlabroot,'/toolbox/pde/pdedata:', ...
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/coder/foundation/passmanager:', ...
matlabroot,'/toolbox/matlab/reports:', ...
matlabroot,'/examples/sl3d:', ...
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/physmod/common/gl/sli/m:', ...
matlabroot,'/toolbox/matlab/findfiles:', ...
matlabroot,'/toolbox/matlab/storage/mldrivedesktop:', ...
matlabroot,'/toolbox/coder/coder:', ...
matlabroot,'/toolbox/simulink/sta/repository:', ...
matlabroot,'/toolbox/simulink/sta/repository/util:', ...
matlabroot,'/toolbox/edalink/extensions/modelsim/modelsimdemos:', ...
matlabroot,'/toolbox/stats/gpu:', ...
matlabroot,'/toolbox/robust/robust:', ...
matlabroot,'/toolbox/robust/rctlmi:', ...
matlabroot,'/toolbox/robust/rctutil:', ...
matlabroot,'/toolbox/robust/rctobsolete/robust:', ...
matlabroot,'/toolbox/robust/rctobsolete/lmi:', ...
matlabroot,'/toolbox/robust/rctobsolete/mutools/commands:', ...
matlabroot,'/toolbox/robust/rctobsolete/mutools/subs:', ...
matlabroot,'/toolbox/shared/filterdesignlib:', ...
matlabroot,'/toolbox/shared/filterdesignlib/filterbuilder:', ...
matlabroot,'/toolbox/physmod/common/external/library/m:', ...
matlabroot,'/toolbox/physmod/sdl/sdl:', ...
matlabroot,'/toolbox/physmod/sdl/classic:', ...
matlabroot,'/toolbox/physmod/sdl/classic/blockIcons:', ...
matlabroot,'/toolbox/shared/slcc/slcc:', ...
matlabroot,'/toolbox/matlab/cefclient:', ...
matlabroot,'/toolbox/simulink/sta/derivedSignals:', ...
matlabroot,'/toolbox/shared/m3i:', ...
matlabroot,'/toolbox/shared/sldv_cc/sldv_cc:', ...
matlabroot,'/toolbox/physmod/gui/gfx/m:', ...
matlabroot,'/toolbox/robotics/robotmanip:', ...
matlabroot,'/toolbox/shared/hdlshared:', ...
matlabroot,'/help/toolbox/sldo/examples:', ...
matlabroot,'/toolbox/physmod/mech/mechdemos:', ...
matlabroot,'/toolbox/physmod/mech/mechdemos/doc:', ...
matlabroot,'/toolbox/simulink/simulink/slproject/simulink:', ...
matlabroot,'/toolbox/shared/testmeaslib/graphics:', ...
matlabroot,'/toolbox/shared/spc/src_ml:', ...
matlabroot,'/toolbox/shared/simulink/sysarch/sysarch:', ...
matlabroot,'/toolbox/bioinfo/bioinfo:', ...
matlabroot,'/toolbox/bioinfo/biolearning:', ...
matlabroot,'/toolbox/bioinfo/microarray:', ...
matlabroot,'/toolbox/bioinfo/mass_spec:', ...
matlabroot,'/toolbox/bioinfo/proteins:', ...
matlabroot,'/toolbox/bioinfo/biomatrices:', ...
matlabroot,'/toolbox/bioinfo/graphtheory:', ...
matlabroot,'/toolbox/shared/cgxe/cgxe:', ...
matlabroot,'/toolbox/matlab/connector2/session:', ...
matlabroot,'/toolbox/coder/trace:', ...
matlabroot,'/toolbox/shared/polyspace:', ...
matlabroot,'/toolbox/distcomp:', ...
matlabroot,'/toolbox/distcomp/distcomp:', ...
matlabroot,'/toolbox/distcomp/user:', ...
matlabroot,'/toolbox/distcomp/mpi:', ...
matlabroot,'/toolbox/distcomp/parallel:', ...
matlabroot,'/toolbox/distcomp/parallel/util:', ...
matlabroot,'/toolbox/distcomp/lang:', ...
matlabroot,'/toolbox/distcomp/cluster:', ...
matlabroot,'/toolbox/distcomp/gpu:', ...
matlabroot,'/toolbox/distcomp/array:', ...
matlabroot,'/toolbox/matlab/addons:', ...
matlabroot,'/toolbox/matlab/addons/cef:', ...
matlabroot,'/toolbox/matlab/addons/supportpackages:', ...
matlabroot,'/toolbox/robotics/robotcore:', ...
matlabroot,'/toolbox/shared/dastudio/seqdiagram:', ...
matlabroot,'/toolbox/slcontrol/slctrldemos:', ...
matlabroot,'/toolbox/shared/sdi:', ...
matlabroot,'/toolbox/fuzzy/fuzdemos:', ...
matlabroot,'/toolbox/coder/codedescriptor_core:', ...
matlabroot,'/toolbox/matlab/connector2/nativebridge:', ...
matlabroot,'/toolbox/physmod/sm/smdemos:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/images:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/wing_landing_gear:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/wing_landing_gear/images:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/cart_double_pendulum:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/cart_double_pendulum/images:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/stewart_platform:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/stewart_platform/images:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/double_crank_aiming:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/double_crank_aiming/images:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/bread_slicer:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/bread_slicer/images:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/import/stewart_platform:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/import/four_bar:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/radial_engine:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/radial_engine/images:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/double_wishbone_suspension:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/double_wishbone_suspension/images:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/import/robot:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/cardan_gear:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/cardan_gear/images:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/windshield_wiper:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/windshield_wiper/images:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/backhoe:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/robotic_wrist:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/carousel:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/welding_robot:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/import/robot_stepfiles:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/potters_wheel:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/linear_actuator:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/pto_shaft:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/cam_flapping_wing:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/vehicle_slalom:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/dump_trailer:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/interface_elements:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/solar_tracker:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/import/humanoid_urdf:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/suspension_templates:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/worm_jack:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/doc:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/doc/bevel_gear:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/doc/common_gear_external:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/doc/common_gear_internal:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/doc/rack_and_pinion:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/doc/worm_and_gear:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/doc/poc_cam:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/doc/poc_flap:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/doc/inertias:', ...
matlabroot,'/toolbox/physmod/sm/smdemos/doc/pulleys:', ...
matlabroot,'/toolbox/shared/system/sfun:', ...
matlabroot,'/toolbox/shared/eda/hdlparser:', ...
matlabroot,'/toolbox/bioinfo/bioinfodata:', ...
matlabroot,'/toolbox/target/extensions/operatingsystem/linux/blks:', ...
matlabroot,'/toolbox/target/extensions/operatingsystem/linux/blks/masks:', ...
matlabroot,'/toolbox/target/extensions/operatingsystem/linux/blks/mex:', ...
matlabroot,'/toolbox/target/extensions/operatingsystem/linux/src:', ...
matlabroot,'/toolbox/coder/xrelexport:', ...
matlabroot,'/toolbox/shared/sl_async_streaming:', ...
matlabroot,'/toolbox/optim/optimdemos:', ...
matlabroot,'/toolbox/coder/connectivity:', ...
matlabroot,'/toolbox/rtw/targets/connectivity:', ...
matlabroot,'/examples/ident:', ...
matlabroot,'/toolbox/shared/cxxfe_mi/cxxfe_mi:', ...
matlabroot,'/toolbox/shared/eda/board:', ...
matlabroot,'/toolbox/compiler/mlhadoop:', ...
matlabroot,'/toolbox/coder/matlabcoder:', ...
matlabroot,'/toolbox/coder/matlabcoder/templates:', ...
matlabroot,'/toolbox/shared/dataflow/dataflowmex/dataflow_mex:', ...
matlabroot,'/toolbox/physmod/pm_sli/pm_sli:', ...
matlabroot,'/toolbox/shared/hwmanager/logger:', ...
matlabroot,'/toolbox/simrf/simrf_top:', ...
matlabroot,'/toolbox/shared/sigbldr:', ...
matlabroot,'/toolbox/physmod/mech/mech:', ...
matlabroot,'/toolbox/physmod/mech/importer:', ...
matlabroot,'/examples/stats:', ...
matlabroot,'/toolbox/shared/mldatx:', ...
matlabroot,'/help/toolbox/simrf/examples:', ...
matlabroot,'/toolbox/imaq/imaq:', ...
matlabroot,'/toolbox/matlab/connector2/restmatlab:', ...
matlabroot,'/toolbox/simulink/simulink/slproject:', ...
matlabroot,'/toolbox/simulink/simulink/slproject/menu:', ...
matlabroot,'/toolbox/shared/comparisons:', ...
matlabroot,'/toolbox/shared/dsp/hdl:', ...
matlabroot,'/toolbox/shared/bigdata:', ...
matlabroot,'/examples/fuzzy_featured:', ...
matlabroot,'/toolbox/shared/cgir_fe:', ...
matlabroot,'/toolbox/physmod/simscape/compiler/mli/m:', ...
matlabroot,'/toolbox/matlab/storage/matlabdrive:', ...
matlabroot,'/examples/fuelsys_shared:', ...
matlabroot,'/toolbox/slde/templates:', ...
matlabroot,'/toolbox/wavelet/wavelet:', ...
matlabroot,'/toolbox/wavelet/wmultisig1d:', ...
matlabroot,'/toolbox/wavelet/compression:', ...
matlabroot,'/toolbox/physmod/powersys/facts/factsdemo:', ...
matlabroot,'/toolbox/physmod/common/units/mli/m:', ...
matlabroot,'/toolbox/shared/simulink/slcheck_services:', ...
matlabroot,'/toolbox/javabuilder/javabuilder:', ...
matlabroot,'/toolbox/shared/deviceplugindetection:', ...
matlabroot,'/toolbox/matlab/system:', ...
matlabroot,'/toolbox/imaq/imaqblks/imaqblks:', ...
matlabroot,'/toolbox/imaq/imaqblks/imaqmex:', ...
matlabroot,'/toolbox/imaq/imaqblks/imaqmasks:', ...
matlabroot,'/toolbox/slcoverage:', ...
matlabroot,'/examples/coder_fixedpoint_simulink:', ...
matlabroot,'/toolbox/physmod/common/dataservices/sli/m:', ...
matlabroot,'/toolbox/physmod/simrf/m:', ...
matlabroot,'/toolbox/matlab/addon_enable_disable_management/matlab:', ...
matlabroot,'/toolbox/robotics/robotalgs:', ...
matlabroot,'/toolbox/rf/rf:', ...
matlabroot,'/toolbox/rf/rfnetparamfiles:', ...
matlabroot,'/toolbox/rf/rftool:', ...
matlabroot,'/toolbox/shared/io:', ...
matlabroot,'/toolbox/fixpoint:', ...
matlabroot,'/toolbox/fixpoint/fpca:', ...
matlabroot,'/toolbox/shared/sl_coverage_configset:', ...
matlabroot,'/toolbox/rptgenext/rptgenextdemos/slxmlcomp:', ...
matlabroot,'/toolbox/dsp/filterdesign:', ...
matlabroot,'/toolbox/symbolic/symbolic:', ...
matlabroot,'/toolbox/slcontrol/slcontrol:', ...
matlabroot,'/toolbox/slcontrol/slctrlguis:', ...
matlabroot,'/toolbox/slcontrol/slctrlutil:', ...
matlabroot,'/toolbox/slcontrol/slctrlobsolete:', ...
matlabroot,'/toolbox/shared/hwconnectinstaller/common:', ...
matlabroot,'/toolbox/rtw/rtw:', ...
matlabroot,'/toolbox/coder/foundation:', ...
matlabroot,'/toolbox/coder/foundation/build:', ...
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,'/examples/phased_comm:', ...
matlabroot,'/examples/symbolic:', ...
matlabroot,'/toolbox/physmod/powersys/drives/drives:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/graphics:', ...
matlabroot,'/toolbox/simulink/sl_async_streaming:', ...
matlabroot,'/toolbox/dsp/templates:', ...
matlabroot,'/examples/sldo:', ...
matlabroot,'/toolbox/sl3d/sl3ddemos:', ...
matlabroot,'/toolbox/shared/multibody/multibodylib:', ...
matlabroot,'/toolbox/matlab/connector2/shadowfiles:', ...
matlabroot,'/examples/driving:', ...
matlabroot,'/toolbox/simulink/simulink/slproject/examples:', ...
matlabroot,'/toolbox/physmod/simscape/compiler/patterns/m:', ...
matlabroot,'/toolbox/shared/siglib:', ...
matlabroot,'/toolbox/shared/configset:', ...
matlabroot,'/toolbox/fixedpoint/fidemos:', ...
matlabroot,'/toolbox/shared/transportlib:', ...
matlabroot,'/examples/robotics:', ...
matlabroot,'/toolbox/coder/rtiostream:', ...
matlabroot,'/toolbox/dsp/dspdemos:', ...
matlabroot,'/toolbox/stats/distributed:', ...
matlabroot,'/toolbox/shared/eda/fil/fildemos:', ...
matlabroot,'/toolbox/shared/slreportgen/utils:', ...
matlabroot,'/examples/fixedpoint:', ...
matlabroot,'/toolbox/matlab/datatools/variableeditor/matlab:', ...
matlabroot,'/toolbox/physmod/simscape/engine/sli/m:', ...
matlabroot,'/toolbox/edalink/extensions/modelsim/modelsim:', ...
matlabroot,'/toolbox/dsp/dsp:', ...
matlabroot,'/toolbox/dsp/dsputilities:', ...
matlabroot,'/toolbox/dsp/dsputilities/dspinit:', ...
matlabroot,'/toolbox/dsp/dsputilities/dspmex:', ...
matlabroot,'/toolbox/dsp/dsp/compiled:', ...
matlabroot,'/examples/nnet:', ...
matlabroot,'/toolbox/rfblks/rfblksdemos:', ...
matlabroot,'/toolbox/physmod/powersys/facts/facts:', ...
matlabroot,'/toolbox/hdlcoder/hdlcoder:', ...
matlabroot,'/toolbox/hdlcoder/hdlcoder/hdlutils:', ...
matlabroot,'/toolbox/hdlcoder/hdlcoder/hdlwa:', ...
matlabroot,'/toolbox/hdlcoder/hdlssc/hdlsscworkflowadvisor:', ...
matlabroot,'/toolbox/hdlcoder/hdlssc:', ...
matlabroot,'/examples/phased:', ...
matlabroot,'/toolbox/shared/sl_units_mldatx:', ...
matlabroot,'/examples/ident_featured:', ...
matlabroot,'/toolbox/shared/dsp/vision/matlab/utilities:', ...
matlabroot,'/toolbox/shared/dsp/vision/simulink/utilities:', ...
matlabroot,'/toolbox/shared/dsp/vision/matlab/utilities/mex:', ...
matlabroot,'/toolbox/shared/dsp/vision/simulink/utilities/mex:', ...
matlabroot,'/toolbox/shared/dsp/vision/matlab/utilities/init:', ...
matlabroot,'/toolbox/shared/dsp/vision/matlab/vision:', ...
matlabroot,'/toolbox/shared/dsp/vision/simulink/vision:', ...
matlabroot,'/toolbox/vision/visiondemos:', ...
matlabroot,'/toolbox/simulink/simulink/iodata/iomap:', ...
matlabroot,'/toolbox/matlab/imagesci:', ...
matlabroot,'/toolbox/shared/instrument:', ...
matlabroot,'/toolbox/shared/imageslib:', ...
matlabroot,'/toolbox/rfblks/rfblks:', ...
matlabroot,'/toolbox/rfblks/rfblksmasks:', ...
matlabroot,'/toolbox/rfblks/rfblksmex:', ...
matlabroot,'/toolbox/shared/sldv:', ...
matlabroot,'/toolbox/physmod/pe/templates:', ...
matlabroot,'/toolbox/finance/findemos:', ...
matlabroot,'/toolbox/compiler/mlspark:', ...
matlabroot,'/toolbox/pde/pdedemos:', ...
matlabroot,'/examples/simulinkcoder:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/devices:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/providers:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/plugins:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/framework:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/framework/modules:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/hwsetup:', ...
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,'/examples/signal:', ...
matlabroot,'/examples/graphics2:', ...
matlabroot,'/toolbox/shared/dsp/visionhdl/simulink/dsp:', ...
matlabroot,'/toolbox/signal/signalanalyzereng:', ...
matlabroot,'/toolbox/shared/hwconnectinstaller:', ...
matlabroot,'/toolbox/compiler_sdk:', ...
matlabroot,'/help/toolbox/vision/examples:', ...
matlabroot,'/toolbox/simulink/simulink/slproject/templates:', ...
matlabroot,'/toolbox/physmod/simscape/foundation/simscape:', ...
matlabroot,'/toolbox/signal/sigdemos:', ...
matlabroot,'/toolbox/distcomp/pctdemos:', ...
matlabroot,'/toolbox/robotics/robotsimulink/robotslmanip:', ...
matlabroot,'/toolbox/shared/controllib/graphics:', ...
matlabroot,'/toolbox/shared/controllib/graphics/utils:', ...
matlabroot,'/toolbox/shared/controllib/graphics/plotoptions:', ...
matlabroot,'/toolbox/compiler/compilerdemos:', ...
matlabroot,'/toolbox/dig/dig:', ...
matlabroot,'/toolbox/physmod/simscape/engine/mli/m:', ...
matlabroot,'/toolbox/shared/cmlink/api:', ...
matlabroot,'/toolbox/shared/supportsoftware/launcher:', ...
matlabroot,'/toolbox/shared/supportsoftware/services:', ...
matlabroot,'/toolbox/shared/supportsoftware/upgrade:', ...
matlabroot,'/toolbox/simulink/simulink_data_dictionary/sldd:', ...
matlabroot,'/examples/coder:', ...
matlabroot,'/toolbox/physmod/simscape/reg/m:', ...
matlabroot,'/examples/dsp:', ...
matlabroot,'/toolbox/rtw/targets/AUTOSAR/AUTOSAR/dataclasses:', ...
matlabroot,'/toolbox/rtw/targets/AUTOSAR/AUTOSAR:', ...
matlabroot,'/toolbox/shared/dsp/float2fixed:', ...
matlabroot,'/toolbox/robotics/robotsimulink/robotslcore:', ...
matlabroot,'/toolbox/mps/persistence:', ...
matlabroot,'/examples/simscape:', ...
matlabroot,'/examples/wavelet:', ...
matlabroot,'/toolbox/fuzzy/fuzzy:', ...
matlabroot,'/toolbox/fuzzy/fuzzyutil:', ...
matlabroot,'/toolbox/simulink/sl_graphics_services/tools:', ...
matlabroot,'/toolbox/matlab/connector2/http:', ...
matlabroot,'/toolbox/shared/advisor:', ...
matlabroot,'/toolbox/shared/spcuilib/logicanalyzer:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner/runtime:', ...
matlabroot,'/toolbox/matlab/apps:', ...
matlabroot,'/toolbox/target/extensions/processor/tic2000:', ...
matlabroot,'/toolbox/target/extensions/processor/tic2000/rtw:', ...
matlabroot,'/toolbox/target/extensions/processor/tic2000/utils:', ...
matlabroot,'/toolbox/shared/controllib/estimation:', ...
matlabroot,'/toolbox/physmod/simscape/utils/m:', ...
matlabroot,'/toolbox/physmod/sm/core/m:', ...
matlabroot,'/toolbox/shared/controllib/engine:', ...
matlabroot,'/toolbox/shared/controllib/engine/numerics:', ...
matlabroot,'/toolbox/shared/controllib/engine/options:', ...
matlabroot,'/toolbox/shared/controllib/engine/optim:', ...
matlabroot,'/toolbox/shared/controllib/engine/blocks:', ...
matlabroot,'/examples/comm:', ...
matlabroot,'/toolbox/physmod/pe/utils/m:', ...
matlabroot,'/toolbox/shared/sl_web_widgets:', ...
matlabroot,'/toolbox/physmod/sm/sm/m:', ...
matlabroot,'/toolbox/physmod/sm/local/m:', ...
matlabroot,'/examples/distcomp:', ...
matlabroot,'/examples/stateflow:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/wsdl:', ...
matlabroot,'/toolbox/physmod/common/dataservices/mli/m:', ...
matlabroot,'/toolbox/ident/iddemos:', ...
matlabroot,'/toolbox/ident/iddemos/examples:', ...
matlabroot,'/toolbox/matlab/connector2/json:', ...
matlabroot,'/help/toolbox/slcontrol/examples:', ...
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/physmod/powersys/drives/drivesdemo:', ...
matlabroot,'/toolbox/sltp/m:', ...
matlabroot,'/examples/imaq:', ...
matlabroot,'/toolbox/matlab/connector2/academy:', ...
matlabroot,'/toolbox/hdlcoder/slhdltemplates:', ...
matlabroot,'/toolbox/physmod/common/external/mli/m:', ...
matlabroot,'/toolbox/physmod/sps/sps:', ...
matlabroot,'/toolbox/idelink/foundation:', ...
matlabroot,'/toolbox/idelink/foundation/util:', ...
matlabroot,'/toolbox/idelink/foundation/errorhandler:', ...
matlabroot,'/toolbox/idelink/foundation/xmakefile:', ...
matlabroot,'/toolbox/idelink/foundation/hookpoints:', ...
matlabroot,'/examples/predmaint_shared:', ...
matlabroot,'/toolbox/simulink/compiled_model_interface:', ...
matlabroot,'/toolbox/simulink/simulink/upgradeadvisor:', ...
matlabroot,'/toolbox/instrument/instrument:', ...
matlabroot,'/toolbox/instrument/instrumentblks/instrumentblks:', ...
matlabroot,'/toolbox/instrument/instrumentblks/instrumentmex:', ...
matlabroot,'/toolbox/instrument/instrumentblks/instrumentmasks:', ...
matlabroot,'/toolbox/physmod/fluids/utils:', ...
matlabroot,'/toolbox/compiler/mltall:', ...
matlabroot,'/toolbox/physmod/sm/ssci/m:', ...
matlabroot,'/toolbox/simulink/fixedandfloat:', ...
matlabroot,'/toolbox/simulink/fixedandfloat/obsolete:', ...
matlabroot,'/toolbox/matlab/networklib:', ...
matlabroot,'/toolbox/shared/spcuilib/unifiedscopes:', ...
matlabroot,'/toolbox/shared/mlreportgen/rpt:', ...
matlabroot,'/toolbox/shared/mlreportgen/rpt/rpt:', ...
matlabroot,'/toolbox/shared/multimedia:', ...
matlabroot,'/toolbox/physmod/ne_sli/ne_sli:', ...
matlabroot,'/toolbox/distcomp/bigdata:', ...
matlabroot,'/toolbox/shared/controllib/requirements:', ...
matlabroot,'/toolbox/physmod/common/gl/mli/m:', ...
matlabroot,'/toolbox/shared/spcuilib/slscopes:', ...
matlabroot,'/toolbox/fininst/fininst:', ...
matlabroot,'/examples/robust:', ...
matlabroot,'/toolbox/globaloptim:', ...
matlabroot,'/toolbox/globaloptim/globaloptim:', ...
matlabroot,'/toolbox/shared/slreportgen/reportexplorer:', ...
matlabroot,'/toolbox/shared/dspblks/dspblks:', ...
matlabroot,'/toolbox/shared/dspblks/dspmex:', ...
matlabroot,'/help/toolbox/robust/examples:', ...
matlabroot,'/toolbox/imaq/imaqdemos:', ...
matlabroot,'/toolbox/database/database:', ...
matlabroot,'/toolbox/shared/rptgen:', ...
matlabroot,'/examples/hdlcoder:', ...
matlabroot,'/toolbox/hdlcoder/hdlslrt:', ...
matlabroot,'/toolbox/shared/dastudio/dpvu/dpvu:', ...
matlabroot,'/toolbox/shared/dastudio/dpvu/dpvu/metamodel:', ...
matlabroot,'/toolbox/shared/dastudio/dpvu/dpvu/actions:', ...
matlabroot,'/toolbox/eml/eml:', ...
matlabroot,'/toolbox/shared/eda/fpgabase:', ...
matlabroot,'/examples/hdlverifier:', ...
matlabroot,'/toolbox/shared/measure:', ...
matlabroot,'/toolbox/shared/slcc_cov/slcc_cov:', ...
matlabroot,'/toolbox/shared/hadoopserializer:', ...
matlabroot,'/toolbox/shared/slvnv:', ...
matlabroot,'/toolbox/matlab/supportpackagemanagement:', ...
matlabroot,'/toolbox/shared/mlreportgen/ppt:', ...
matlabroot,'/toolbox/shared/mlreportgen/ppt/ppt:', ...
matlabroot,'/toolbox/shared/mlreportgen/ppt/ppt/help:', ...
matlabroot,'/toolbox/hdlverifier/hdlverifier_examples:', ...
matlabroot,'/toolbox/physmod/simscape/simscape/m:', ...
matlabroot,'/toolbox/shared/slpir:', ...
matlabroot,'/toolbox/shared/eda/fil:', ...
matlabroot,'/toolbox/shared/eda/fil/filmapi:', ...
matlabroot,'/toolbox/hdlcoder/hdlcoderdemos:', ...
matlabroot,'/toolbox/hdlcoder/hdlcoderdemos/matlabhdlcoderdemos:', ...
matlabroot,'/toolbox/physmod/simscape/simscapedemos:', ...
matlabroot,'/toolbox/physmod/simscape/simscapedemos/doc:', ...
matlabroot,'/toolbox/matlab/toolboxmanagement/matlab_api:', ...
matlabroot,'/toolbox/compiler:', ...
matlabroot,'/examples/sps:', ...
matlabroot,'/toolbox/shared/curvefitlib:', ...
matlabroot,'/examples/rf:', ...
matlabroot,'/toolbox/matlab/connector2/configuration:', ...
matlabroot,'/toolbox/physmod/elec/advisor/m:', ...
matlabroot,'/toolbox/sldv/sldv:', ...
matlabroot,'/toolbox/physmod/common/data/mli/m:', ...
matlabroot,'/toolbox/target/extensions/operatingsystem/windows/blks:', ...
matlabroot,'/toolbox/target/extensions/operatingsystem/windows/blks/masks:', ...
matlabroot,'/toolbox/target/extensions/operatingsystem/windows/blks/mex:', ...
matlabroot,'/toolbox/shared/mlreportgen/dom:', ...
matlabroot,'/toolbox/shared/mlreportgen/dom/dom:', ...
matlabroot,'/toolbox/shared/mlreportgen/dom/dom/help:', ...
matlabroot,'/examples/database:', ...
matlabroot,'/toolbox/rtw/targets/ecoder/ecoderdemos/dataclasses:', ...
matlabroot,'/toolbox/rtw/targets/ecoder/ecoderdemos:', ...
matlabroot,'/toolbox/shared/testconsole:', ...
matlabroot,'/toolbox/physmod/sm/foundation/mech:', ...
matlabroot,'/toolbox/sl_pir_cap:', ...
matlabroot,'/help/toolbox/dsp/examples:', ...
matlabroot,'/toolbox/matlab/connector2/editor:', ...
matlabroot,'/toolbox/shared/slcontrollib:', ...
matlabroot,'/toolbox/optim/optim:', ...
matlabroot,'/toolbox/optim:', ...
matlabroot,'/toolbox/physmod/sm/import/m:', ...
matlabroot,'/toolbox/matlab/connector2/worker:', ...
matlabroot,'/toolbox/fixedpoint/fixedpoint:', ...
matlabroot,'/examples/coder_compiler_dsp:', ...
matlabroot,'/toolbox/coder/profile:', ...
matlabroot,'/toolbox/robotics/ros:', ...
matlabroot,'/toolbox/shared/system/coreblocks:', ...
matlabroot,'/toolbox/physmod/pe/sli/m:', ...
matlabroot,'/toolbox/physmod/pe/sli/sfun:', ...
matlabroot,'/toolbox/coder/xcp:', ...
matlabroot,'/toolbox/edalink/edalink:', ...
matlabroot,'/toolbox/hdlverifier/hdlverifier:', ...
matlabroot,'/toolbox/physmod/sm/templates:', ...
matlabroot,'/toolbox/physmod/common/foundation/mli/m:', ...
matlabroot,'/toolbox/robotics/robotsimulink/robotslalgs:', ...
matlabroot,'/toolbox/compiler_sdk/java:', ...
matlabroot,'/toolbox/simulink/mask/iconeditor:', ...
matlabroot,'/toolbox/shared/asynciolib:', ...
matlabroot,'/toolbox/matlab/filebrowser:', ...
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/simrf/simrf:', ...
matlabroot,'/toolbox/simrf/simrfV2:', ...
matlabroot,'/toolbox/simrf/simrfV2masks:', ...
matlabroot,'/toolbox/physmod/sdl/sdldemos:', ...
matlabroot,'/toolbox/simulink/blocks/sb2sl:', ...
matlabroot,'/toolbox/shared/codeinstrum/codeinstrum:', ...
matlabroot,'/toolbox/shared/hdlshared/hdlshared_gui:', ...
matlabroot,'/examples/map:', ...
matlabroot,'/toolbox/matlab/connector2/logger:', ...
matlabroot,'/toolbox/shared/tracking/trackinglib:', ...
matlabroot,'/toolbox/shared/tracking/trackinglib/blocks:', ...
matlabroot,'/toolbox/shared/fmu_block:', ...
matlabroot,'/toolbox/shared/appdes/services:', ...
matlabroot,'/toolbox/hdlcoder/hdllib/sl_lib:', ...
matlabroot,'/toolbox/physmod/simscape/library/m:', ...
matlabroot,'/toolbox/simulink/sta/sourceBlocks:', ...
matlabroot,'/examples/mpc:', ...
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,'/examples/graphics:', ...
matlabroot,'/toolbox/shared/maputils:', ...
matlabroot,'/toolbox/matlab/external/interfaces/json:', ...
matlabroot,'/toolbox/matlab/timeseries:', ...
matlabroot,'/toolbox/shared/simulink:', ...
matlabroot,'/examples/control:', ...
matlabroot,'/examples/matlab_featured:', ...
matlabroot,'/toolbox/simevents/examples:', ...
matlabroot,'/toolbox/sldo/sldo:', ...
matlabroot,'/toolbox/sldo/sldoguis:', ...
matlabroot,'/toolbox/sldo/sloptim/sloptim:', ...
matlabroot,'/toolbox/sldo/sloptim/sloptguis:', ...
matlabroot,'/toolbox/sldo/sloptim/sloptobsolete:', ...
matlabroot,'/toolbox/sldo/slestim/slestguis:', ...
matlabroot,'/toolbox/sldo/slestim/slestim:', ...
matlabroot,'/toolbox/sldo/slestim/slestmex:', ...
matlabroot,'/toolbox/sldo/slestim/slestutil:', ...
matlabroot,'/toolbox/physmod/network_engine/network_engine:', ...
matlabroot,'/toolbox/vision/vision:', ...
matlabroot,'/toolbox/vision/visiondata:', ...
matlabroot,'/toolbox/vision/visionutilities:', ...
matlabroot,'/toolbox/vision/visionutilities/visioninit:', ...
matlabroot,'/toolbox/vision/visionutilities/visionmex:', ...
matlabroot,'/toolbox/matlab/connector2/visualization:', ...
matlabroot,'/toolbox/physmod/powersys/DR/DR:', ...
matlabroot,'/toolbox/shared/eda/edagraph:', ...
matlabroot,'/toolbox/shared/rflib:', ...
matlabroot,'/toolbox/shared/dastudio:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner:', ...
matlabroot,'/toolbox/matlab/connector2/interpreter:', ...
matlabroot,'/toolbox/matlab/toolstrip:', ...
matlabroot,'/toolbox/matlab/external/interfaces/python:', ...
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/shared/optimlib:', ...
matlabroot,'/toolbox/matlab/connector2/mgg:', ...
matlabroot,'/toolbox/physmod/elec/elecdemos:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/http:', ...
matlabroot,'/toolbox/multisim:', ...
matlabroot,'/toolbox/shared/spcuilib/applications:', ...
matlabroot,'/toolbox/target:', ...
matlabroot,'/toolbox/target/foundation:', ...
matlabroot,'/toolbox/target/foundation/utils:', ...
matlabroot,'/toolbox/target/foundation/utils/resource_config:', ...
matlabroot,'/toolbox/target/foundation/blks:', ...
matlabroot,'/toolbox/target/foundation/blks/mex:', ...
matlabroot,'/toolbox/target/foundation/blks/masks:', ...
matlabroot,'/toolbox/target/extensions/processor/shared:', ...
matlabroot,'/toolbox/target/extensions/processor/shared/ti:', ...
matlabroot,'/toolbox/target/extensions/processor/shared/ti/mdlinfo:', ...
matlabroot,'/toolbox/target/extensions/processor/shared/ti/utils:', ...
matlabroot,'/toolbox/target/extensions/processor/shared/ti/blks:', ...
matlabroot,'/toolbox/target/extensions/processor/shared/ti/blks/mex:', ...
matlabroot,'/toolbox/target/extensions/processor/shared/ti/blks/masks:', ...
matlabroot,'/toolbox/target/extensions/processor/ARM/tfl:', ...
matlabroot,'/toolbox/shared/etargets/etargets:', ...
matlabroot,'/toolbox/shared/etargets/etargets/demoutils:', ...
matlabroot,'/toolbox/physmod/sh/utils:', ...
matlabroot,'/toolbox/shared/hotpluglib:', ...
matlabroot,'/toolbox/shared/can:', ...
matlabroot,'/toolbox/shared/can/canblks:', ...
matlabroot,'/toolbox/shared/can/canmasks:', ...
matlabroot,'/toolbox/shared/can/canmex:', ...
matlabroot,'/toolbox/physmod/powersys/DR/DRdemo:', ...
matlabroot,'/toolbox/dsp/dsphdl:', ...
matlabroot,'/toolbox/dsp/dsphdl/compiled:', ...
matlabroot,'/toolbox/dsp/dsphdl/dsputilities:', ...
matlabroot,'/toolbox/physmod/pe/advisor/m:', ...
matlabroot,'/toolbox/shared/statslib:', ...
matlabroot,'/toolbox/shared/statslib/sensitivity:', ...
matlabroot,'/toolbox/autoblks/autoblksshared:', ...
matlabroot,'/toolbox/shared/pdelib:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/plugin/appdesigner:', ...
matlabroot,'/toolbox/robotics/robotics:', ...
matlabroot,'/toolbox/robust/rctdemos:', ...
matlabroot,'/toolbox/shared/dataflow:', ...
matlabroot,'/toolbox/shared/dataflow/dataflowsimulink/dfs:', ...
matlabroot,'/examples/controls_id:', ...
matlabroot,'/examples/simulink_general:', ...
matlabroot,'/examples/simulink_general/main:', ...
matlabroot,'/toolbox/physmod/powersys/templates:', ...
matlabroot,'/examples/vision:', ...
matlabroot,'/toolbox/sl3d/sl3d:', ...
matlabroot,'/toolbox/comm/commdemos:', ...
matlabroot,'/examples/matlab:', ...
matlabroot,'/examples/curvefit:', ...
matlabroot,'/toolbox/physmod/powersys/library:', ...
matlabroot,'/examples/ecoder:', ...
matlabroot,'/toolbox/hdlcoder/hdlcommon:', ...
matlabroot,'/toolbox/hdlcoder/hdlcommon/modelcheckeradvisor:', ...
matlabroot,'/toolbox/matlab/datatools/peermodel_mcos/matlab:', ...
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,'/examples/robust_featured:', ...
matlabroot,'/examples/simrf:', ...
matlabroot,'/toolbox/symbolic/symbolicdemos:', ...
matlabroot,'/toolbox/target/extensions/processor/intelhost/tfl:', ...
matlabroot,'/toolbox/shared/system/simulink:', ...
matlabroot,'/toolbox/images/imdemos:', ...
matlabroot,'/toolbox/shared/mlreportgen/utils:', ...
matlabroot,'/toolbox/shared/spreadsheet:', ...
matlabroot,'/toolbox/physmod/sm/sli/m:', ...
matlabroot,'/toolbox/matlab/toolbox_packaging:', ...
matlabroot,'/examples/optim:', ...
matlabroot,'/toolbox/mpc/mpc:', ...
matlabroot,'/toolbox/mpc/mpcguis:', ...
matlabroot,'/toolbox/mpc/mpcobsolete:', ...
matlabroot,'/toolbox/mpc/mpcutils:', ...
matlabroot,'/toolbox/simulink/simulink/iodata/ioformat:', ...
matlabroot,'/toolbox/shared/reqmgt:', ...
matlabroot,'/toolbox/shared/reqmgt/mmutils:', ...
matlabroot,'/toolbox/matlab/datatools/datatoolsservices/matlab:', ...
matlabroot,'/toolbox/shared/cosimservice/ddg:', ...
matlabroot,'/toolbox/physmod/elec/utils:', ...
matlabroot,'/toolbox/physmod/sh/sh:', ...
matlabroot,'/toolbox/physmod/sh/sh_legacy:', ...
matlabroot,'/toolbox/rptgenext/slxmlcomp:', ...
matlabroot,'/toolbox/shared/mapgeodesy:', ...
matlabroot,'/toolbox/shared/rotations/rotationslib:', ...
matlabroot,'/examples/shared_rotations:', ...
matlabroot,'/toolbox/simulink/slhistory:', ...
matlabroot,'/toolbox/matlab/connector2/microservices:', ...
matlabroot,'/toolbox/shared/signalwavelet/signalwavelet:', ...
matlabroot,'/toolbox/simulink/sta/scenarioconnector:', ...
matlabroot,'/toolbox/simulink/sta/scenarioconnector/ui:', ...
matlabroot,'/toolbox/simulink/sta/scenarioconnector/ui/toolstrip/modelsection:', ...
matlabroot,'/toolbox/simulink/sta/scenarioconnector/ui/toolstrip/filesection:', ...
matlabroot,'/toolbox/simulink/sta/editor:', ...
matlabroot,'/toolbox/simulink/sta/editor/ui:', ...
matlabroot,'/toolbox/simulink/sta/ui:', ...
matlabroot,'/toolbox/simulink/sta/ui/comparisontool:', ...
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/toolstrip:', ...
matlabroot,'/toolbox/simulink/sta/ui/toolstrip/open/streaming:', ...
matlabroot,'/toolbox/simulink/sta/ui/toolstrip/help:', ...
matlabroot,'/toolbox/simulink/sta/ui/toolstrip/open:', ...