-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpathdef.m
787 lines (780 loc) · 44.8 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
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/farznaj/Documents/repoland/preproc:', ...
'/home/farznaj/Documents/repoland/preproc/CaImaging:', ...
'/home/farznaj/Documents/repoland/preproc/CaImaging/fiji:', ...
'/home/farznaj/Documents/repoland/preproc/CaImaging/merging:', ...
'/home/farznaj/Documents/repoland/preproc/CaImaging/motion:', ...
'/home/farznaj/Documents/repoland/preproc/CaImaging/pnevmatikakis:', ...
'/home/farznaj/Documents/repoland/preproc/CaImaging/pnevmatikakis/ca_source_extraction:', ...
'/home/farznaj/Documents/repoland/preproc/CaImaging/pnevmatikakis/ca_source_extraction/utilities:', ...
'/home/farznaj/Documents/repoland/preproc/CaImaging/pnevmatikakis/ca_source_extraction/utilities/memmap:', ...
'/home/farznaj/Documents/repoland/preproc/CaImaging/pnevmatikakis/continuous_time_ca_sampler:', ...
'/home/farznaj/Documents/repoland/preproc/CaImaging/pnevmatikakis/continuous_time_ca_sampler/utilities:', ...
'/home/farznaj/Documents/repoland/utils/Farzaneh:', ...
'/home/farznaj/Documents/repoland/utils/Farzaneh/parfor_progress:', ...
'/home/farznaj/Documents/repoland/utils/matt:', ...
'/home/farznaj/Documents/repoland/utils/danielb:', ...
'/home/farznaj/Documents/repoland/playgrounds/Farzaneh:', ...
'/home/farznaj/Documents/repoland/playgrounds/Farzaneh/imaging/CaImaging_preproc:', ...
'/home/farznaj/Documents/repoland/playgrounds/Farzaneh/imaging/CaImaging_preproc/danielB:', ...
'/home/farznaj/Documents/repoland/playgrounds/Farzaneh/imaging/CaImaging_preproc/manualROIactivity:', ...
'/home/farznaj/Documents/repoland/playgrounds/Farzaneh/imaging/CaImaging_preproc/mdf_to_tif:', ...
'/home/farznaj/Documents/repoland/playgrounds/Farzaneh/imaging/CaImaging_preproc/multiTrials:', ...
'/home/farznaj/Documents/trial_history:', ...
'/home/farznaj/Documents/trial_history/behavior:', ...
'/home/farznaj/Documents/trial_history/behavior/behavior_protocols:', ...
'/home/farznaj/Documents/trial_history/imaging:', ...
'/home/farznaj/Documents/trial_history/behavior/simon_behavior:', ...
'/home/farznaj/Documents/trial_history/utils:', ...
'/home/farznaj/Documents/trial_history/utils/Matt:', ...
'/home/farznaj/Documents/trial_history/utils/TDR:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/Palamedes:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/Palamedes/Palamedes:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/Palamedes/PalamedesDemos:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/D2GaussFit:', ...
'/home/farznaj/Documents/trial_history/utils/lassoClassifier:', ...
'/home/farznaj/Documents/trial_history/utils/logisticRegression:', ...
'/home/farznaj/Documents/trial_history/utils/regressCommonSlope:', ...
'/home/farznaj/Documents/trial_history/utils/sampleRandSubspaces:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/boundedline_kakearney:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/boundedline_kakearney/Inpaint_nans:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/boundedline_kakearney/Inpaint_nans/demo:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/boundedline_kakearney/Inpaint_nans/demo/html:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/boundedline_kakearney/Inpaint_nans/doc:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/boundedline_kakearney/Inpaint_nans/test:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/boundedline_kakearney/boundedline:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/boundedline_kakearney/catuneven:', ...
'/home/farznaj/Documents/trial_history/utils/downloaded/boundedline_kakearney/singlepatch:', ...
matlabroot,'/toolbox/matlab/polyfun:', ...
matlabroot,'/toolbox/matlab/ops:', ...
matlabroot,'/toolbox/matlab/elmat:', ...
matlabroot,'/toolbox/matlab/strfun:', ...
matlabroot,'/toolbox/matlab/randfun:', ...
matlabroot,'/toolbox/matlab/timefun:', ...
matlabroot,'/toolbox/matlab/funfun:', ...
matlabroot,'/toolbox/matlab/specfun:', ...
matlabroot,'/toolbox/matlab/datatypes:', ...
matlabroot,'/toolbox/matlab/sparfun:', ...
matlabroot,'/toolbox/matlab/elfun:', ...
matlabroot,'/toolbox/matlab/datafun:', ...
matlabroot,'/toolbox/matlab/lang:', ...
matlabroot,'/toolbox/matlab/validators:', ...
matlabroot,'/toolbox/matlab/matfun:', ...
matlabroot,'/toolbox/matlab/general:', ...
matlabroot,'/toolbox/matlab/iofun:', ...
matlabroot,'/toolbox/matlab/mvm:', ...
matlabroot,'/toolbox/matlab/testframework/ext:', ...
matlabroot,'/toolbox/matlab/testframework/core:', ...
matlabroot,'/toolbox/matlab/testframework/obsolete:', ...
matlabroot,'/toolbox/matlab/optimfun:', ...
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/icons:', ...
matlabroot,'/toolbox/matlab/testframework/parallel:', ...
matlabroot,'/toolbox/matlab/demos:', ...
matlabroot,'/toolbox/matlab/guide:', ...
matlabroot,'/toolbox/matlab/images:', ...
matlabroot,'/toolbox/matlab/testframework/measurement:', ...
matlabroot,'/toolbox/matlab/findfiles:', ...
matlabroot,'/toolbox/matlab/depfun:', ...
matlabroot,'/toolbox/matlab/winfun:', ...
matlabroot,'/toolbox/matlab/winfun/NET:', ...
matlabroot,'/toolbox/matlab/graphfun:', ...
matlabroot,'/toolbox/matlab/datamanager:', ...
matlabroot,'/toolbox/matlab/testframework/performance:', ...
matlabroot,'/toolbox/matlab/codetools:', ...
matlabroot,'/toolbox/matlab/codetools/embeddedoutputs:', ...
matlabroot,'/toolbox/matlab/bigdata:', ...
matlabroot,'/toolbox/local:', ...
matlabroot,'/toolbox/matlab/hardware/stubs:', ...
matlabroot,'/toolbox/matlab/verctrl:', ...
matlabroot,'/toolbox/matlab/helptools:', ...
matlabroot,'/toolbox/matlab/mapreduceio:', ...
matlabroot,'/toolbox/matlab/testframework/mock:', ...
matlabroot,'/toolbox/matlab/datastoreio:', ...
matlabroot,'/toolbox/simulink/components:', ...
matlabroot,'/toolbox/simulink/dee:', ...
matlabroot,'/toolbox/simulink/simdemos/dataclasses:', ...
matlabroot,'/toolbox/simulink/simdemos:', ...
matlabroot,'/toolbox/simulinktest/core/testsequence/testsequence:', ...
matlabroot,'/toolbox/simulink/simulink/templates/core:', ...
matlabroot,'/toolbox/rtw/accel:', ...
matlabroot,'/toolbox/coder/simulinkcoder_core:', ...
matlabroot,'/toolbox/simulink/simdemos/automotive/powerwindow:', ...
matlabroot,'/toolbox/simulink/ui/library_browser/core/m:', ...
matlabroot,'/toolbox/simulink/simdemos/aerospace:', ...
matlabroot,'/toolbox/simulink/simulink/modeladvisor:', ...
matlabroot,'/toolbox/simulink/simulink/modeladvisor/fixpt:', ...
matlabroot,'/toolbox/simulink/simulink/modeladvisor/misra:', ...
matlabroot,'/toolbox/simulink/simdemos/automotive/fuelsys:', ...
matlabroot,'/toolbox/simulink/blocks/library:', ...
matlabroot,'/toolbox/simulink/blocks/library/simulinkcoder:', ...
matlabroot,'/toolbox/simulink/blocks/obsolete:', ...
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/slde/slde:', ...
matlabroot,'/toolbox/slde/slde/resources:', ...
matlabroot,'/toolbox/simulinktest/core/simharness/simharness:', ...
matlabroot,'/toolbox/simulinktest/core/observer/observer:', ...
matlabroot,'/toolbox/simulink/simdemos/simfeatures:', ...
matlabroot,'/toolbox/simulink/simdemos/simfeatures/modelreference:', ...
matlabroot,'/toolbox/simulink/simdemos/simfeatures/datadictionary:', ...
matlabroot,'/toolbox/simulink/simdemos/simgeneral:', ...
matlabroot,'/toolbox/simulink/simulink/frameedit:', ...
matlabroot,'/toolbox/simulink/simulink_export_methods:', ...
matlabroot,'/toolbox/coder/objectives:', ...
matlabroot,'/toolbox/simulink/hmi:', ...
matlabroot,'/toolbox/simulink/simdemos/automotive:', ...
matlabroot,'/toolbox/simulink/simulink/templates/product:', ...
matlabroot,'/toolbox/simulink/simdemos/industrial:', ...
matlabroot,'/toolbox/simulink/sdi:', ...
matlabroot,'/toolbox/simulink/sldependency:', ...
matlabroot,'/toolbox/simulink/sysarch/sysarch:', ...
matlabroot,'/toolbox/stateflow/sftemplates:', ...
matlabroot,'/toolbox/stateflow/sfdemos:', ...
matlabroot,'/toolbox/stateflow/stateflow:', ...
matlabroot,'/toolbox/stateflow/coder:', ...
matlabroot,'/toolbox/matlab/connector2/mgg:', ...
matlabroot,'/toolbox/simbio/simbiodemos:', ...
matlabroot,'/toolbox/matlab/toolboxmanagement/matlab_api:', ...
matlabroot,'/toolbox/shared/dataflow/dataflowmex/dataflow_mex:', ...
matlabroot,'/toolbox/physmod/simscape/advisor/m:', ...
matlabroot,'/toolbox/simulink/simulink/upgradeadvisor:', ...
matlabroot,'/toolbox/wavelet/wavelet:', ...
matlabroot,'/toolbox/wavelet/wmultisig1d:', ...
matlabroot,'/toolbox/wavelet/compression:', ...
matlabroot,'/toolbox/matlab/imagesci:', ...
matlabroot,'/toolbox/shared/slpir:', ...
matlabroot,'/toolbox/sl3d/sl3d:', ...
matlabroot,'/toolbox/hdlcoder/hdllib/ml_lib:', ...
matlabroot,'/toolbox/fixedpoint/fidemos:', ...
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/idelink/foundation:', ...
matlabroot,'/toolbox/idelink/foundation/util:', ...
matlabroot,'/toolbox/idelink/foundation/errorhandler:', ...
matlabroot,'/toolbox/idelink/foundation/xmakefile:', ...
matlabroot,'/toolbox/idelink/foundation/hookpoints:', ...
matlabroot,'/toolbox/shared/testmeaslib/graphics:', ...
matlabroot,'/toolbox/shared/supportpkgservices/legacysupportpkginfo:', ...
matlabroot,'/toolbox/shared/supportpkgservices/installservices:', ...
matlabroot,'/toolbox/shared/supportpkgservices/supportpackageroot:', ...
matlabroot,'/toolbox/shared/supportpkgservices/installedapi:', ...
matlabroot,'/toolbox/shared/controllib/requirements:', ...
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:', ...
matlabroot,'/toolbox/simulink/sta/ui/toolstrip/session:', ...
matlabroot,'/toolbox/simulink/sta/ui/toolstrip/report:', ...
matlabroot,'/toolbox/physmod/ne_sli/ne_sli:', ...
matlabroot,'/toolbox/physmod/gui/gfx/m:', ...
matlabroot,'/toolbox/shared/dsp/dialog:', ...
matlabroot,'/toolbox/database/database:', ...
matlabroot,'/toolbox/database/vqb:', ...
matlabroot,'/toolbox/matlab/connector2/interpreter:', ...
matlabroot,'/toolbox/matlab/system/editor:', ...
matlabroot,'/toolbox/target/codertarget:', ...
matlabroot,'/toolbox/target/codertarget/rtw:', ...
matlabroot,'/toolbox/target/codertarget/matlabcoder:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/http:', ...
matlabroot,'/toolbox/shared/rptgen:', ...
matlabroot,'/toolbox/shared/system/coder:', ...
matlabroot,'/toolbox/shared/codeinstrum/codeinstrum:', ...
matlabroot,'/toolbox/shared/mlreportgen/ppt:', ...
matlabroot,'/toolbox/shared/mlreportgen/ppt/ppt:', ...
matlabroot,'/toolbox/shared/mlreportgen/ppt/ppt/help:', ...
matlabroot,'/toolbox/coder/matlabcoder:', ...
matlabroot,'/toolbox/coder/matlabcoder/templates:', ...
matlabroot,'/toolbox/shared/cgir_fe:', ...
matlabroot,'/toolbox/imaq/imaqblks/imaqblks:', ...
matlabroot,'/toolbox/imaq/imaqblks/imaqmex:', ...
matlabroot,'/toolbox/imaq/imaqblks/imaqmasks:', ...
matlabroot,'/toolbox/dsp/dsp:', ...
matlabroot,'/toolbox/dsp/dsputilities:', ...
matlabroot,'/toolbox/dsp/dsputilities/dspinit:', ...
matlabroot,'/toolbox/dsp/dsputilities/dspmex:', ...
matlabroot,'/toolbox/dsp/dsp/compiled:', ...
matlabroot,'/toolbox/slcontrol/slcontrol:', ...
matlabroot,'/toolbox/slcontrol/slctrlguis:', ...
matlabroot,'/toolbox/slcontrol/slctrlutil:', ...
matlabroot,'/toolbox/slcontrol/slctrlobsolete:', ...
matlabroot,'/toolbox/sltp/legend:', ...
matlabroot,'/toolbox/physmod/pm_visimpl/pm_visimpl:', ...
matlabroot,'/toolbox/matlab/apps:', ...
matlabroot,'/toolbox/shared/comparisons:', ...
matlabroot,'/toolbox/matlab/connector2/common:', ...
matlabroot,'/toolbox/physmod/simscape/compiler/patterns/m:', ...
matlabroot,'/toolbox/shared/instrument:', ...
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/shared/can:', ...
matlabroot,'/toolbox/shared/can/canblks:', ...
matlabroot,'/toolbox/shared/can/canmasks:', ...
matlabroot,'/toolbox/shared/can/canmex:', ...
matlabroot,'/toolbox/stats/distributed:', ...
matlabroot,'/toolbox/matlab/connector2/session:', ...
matlabroot,'/toolbox/shared/asynciolib:', ...
matlabroot,'/toolbox/matlab/connector2/http:', ...
matlabroot,'/toolbox/matlab/addons_toolbox:', ...
matlabroot,'/toolbox/shared/slvnv:', ...
matlabroot,'/toolbox/shared/simulink/slcheck_services:', ...
matlabroot,'/toolbox/simulink/sltemplate:', ...
matlabroot,'/toolbox/nnet/cnn:', ...
matlabroot,'/toolbox/shared/sigbldr:', ...
matlabroot,'/toolbox/matlab/system:', ...
matlabroot,'/toolbox/physmod/common/dataservices/mli/m:', ...
matlabroot,'/toolbox/physmod/sm/docexamples:', ...
matlabroot,'/toolbox/physmod/sm/docexamples/bevel_gear:', ...
matlabroot,'/toolbox/physmod/sm/docexamples/common_gear_external:', ...
matlabroot,'/toolbox/physmod/sm/docexamples/common_gear_internal:', ...
matlabroot,'/toolbox/physmod/sm/docexamples/rack_and_pinion:', ...
matlabroot,'/toolbox/physmod/sm/docexamples/worm_and_gear:', ...
matlabroot,'/toolbox/physmod/sm/docexamples/poc_cam:', ...
matlabroot,'/toolbox/physmod/sm/docexamples/poc_flap:', ...
matlabroot,'/toolbox/shared/coder/coder:', ...
matlabroot,'/toolbox/nnet/nndemos:', ...
matlabroot,'/toolbox/nnet/nndemos/nndatasets:', ...
matlabroot,'/toolbox/matlab/connector2/logger:', ...
matlabroot,'/toolbox/bioinfo/bioinfodata:', ...
matlabroot,'/toolbox/dsp/filterdesign:', ...
matlabroot,'/toolbox/instrument/instrument:', ...
matlabroot,'/toolbox/instrument/instrumentblks/instrumentblks:', ...
matlabroot,'/toolbox/instrument/instrumentblks/instrumentmex:', ...
matlabroot,'/toolbox/instrument/instrumentblks/instrumentmasks:', ...
matlabroot,'/toolbox/shared/system/sfun:', ...
matlabroot,'/toolbox/shared/slcc/slcc:', ...
matlabroot,'/toolbox/matlab/audiovideo:', ...
matlabroot,'/toolbox/optim/optim:', ...
matlabroot,'/toolbox/optim:', ...
matlabroot,'/toolbox/simulink/sta/sourceBlocks:', ...
matlabroot,'/toolbox/shared/dsp/hdl:', ...
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/simulink/simulink/performance:', ...
matlabroot,'/toolbox/simulink/simulink/performance/performancea:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner:', ...
matlabroot,'/toolbox/shared/hwmanager/hwconnection:', ...
matlabroot,'/toolbox/shared/tracking/trackinglib:', ...
matlabroot,'/toolbox/shared/tracking/trackinglib/blocks:', ...
matlabroot,'/toolbox/shared/bigdata:', ...
matlabroot,'/toolbox/simulink/simulink/slproject/templates:', ...
matlabroot,'/toolbox/matlab/connector2/security:', ...
matlabroot,'/toolbox/coder/emlcodermex:', ...
matlabroot,'/toolbox/physmod/common/units/mli/m:', ...
matlabroot,'/toolbox/simulink/simulink/iodata/ioformat:', ...
matlabroot,'/toolbox/slcontrol/slctrldemos:', ...
matlabroot,'/toolbox/shared/appdes/services:', ...
matlabroot,'/toolbox/signal/signalanalyzer:', ...
matlabroot,'/toolbox/physmod/common/external/library/m:', ...
matlabroot,'/toolbox/shared/dastudio/dpvu/dpvu:', ...
matlabroot,'/toolbox/shared/dastudio/dpvu/dpvu/metamodel:', ...
matlabroot,'/toolbox/shared/dastudio/dpvu/dpvu/actions:', ...
matlabroot,'/toolbox/shared/hwconnectinstaller:', ...
matlabroot,'/toolbox/physmod/simscape/compiler/sli/m:', ...
matlabroot,'/toolbox/shared/simulation_data_repository:', ...
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/storage/matlabdrive:', ...
matlabroot,'/toolbox/coder/profile:', ...
matlabroot,'/toolbox/shared/hdlshared/hdlshared_gui:', ...
matlabroot,'/toolbox/physmod/sm/ssci/m:', ...
matlabroot,'/toolbox/shared/pdelib:', ...
matlabroot,'/toolbox/physmod/common/dataservices/gui/m:', ...
matlabroot,'/toolbox/shared/configset:', ...
matlabroot,'/toolbox/multisim:', ...
matlabroot,'/toolbox/simulink/slhistory:', ...
matlabroot,'/toolbox/physmod/common/gl/mli/m:', ...
matlabroot,'/toolbox/matlab/addons_zip:', ...
matlabroot,'/toolbox/shared/curvefitlib:', ...
matlabroot,'/toolbox/simulink/sl_graphics_services/tools:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/restful:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices:', ...
matlabroot,'/toolbox/compiler/mlhadoop:', ...
matlabroot,'/toolbox/shared/cmlink/api:', ...
matlabroot,'/toolbox/shared/imageslib:', ...
matlabroot,'/toolbox/shared/filterdesignlib:', ...
matlabroot,'/toolbox/shared/filterdesignlib/filterbuilder:', ...
matlabroot,'/toolbox/matlab/connector2/microservices:', ...
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/network_engine/network_engine:', ...
matlabroot,'/toolbox/shared/hadoopserializer:', ...
matlabroot,'/toolbox/images/imdemos:', ...
matlabroot,'/toolbox/matlab/addons_product:', ...
matlabroot,'/toolbox/shared/networklib:', ...
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,'/toolbox/hdlcoder/hdlslrt:', ...
matlabroot,'/toolbox/shared/sdi:', ...
matlabroot,'/toolbox/simbio/simbio:', ...
matlabroot,'/toolbox/imaq/imaq:', ...
matlabroot,'/toolbox/shared/maputils:', ...
matlabroot,'/toolbox/physmod/simscape/engine/mli/m:', ...
matlabroot,'/toolbox/shared/eda/edagraph:', ...
matlabroot,'/toolbox/distcomp/pctdemos:', ...
matlabroot,'/toolbox/matlab/filebrowser:', ...
matlabroot,'/toolbox/ident/ident:', ...
matlabroot,'/toolbox/ident/nlident:', ...
matlabroot,'/toolbox/ident/idobsolete:', ...
matlabroot,'/toolbox/ident/idguis:', ...
matlabroot,'/toolbox/ident/idutils:', ...
matlabroot,'/toolbox/ident/idrecursive:', ...
matlabroot,'/toolbox/ident/idhelp:', ...
matlabroot,'/toolbox/compiler/mlspark:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/wsdl:', ...
matlabroot,'/toolbox/shared/spreadsheet:', ...
matlabroot,'/toolbox/matlab/datatools/workspacebrowser/matlab:', ...
matlabroot,'/toolbox/shared/dataflow:', ...
matlabroot,'/toolbox/shared/dsp/simulink/dsp:', ...
matlabroot,'/toolbox/physmod/sm/gui/m:', ...
matlabroot,'/toolbox/matlab/serial:', ...
matlabroot,'/toolbox/simulink/slexportprevious:', ...
matlabroot,'/toolbox/shared/advisor:', ...
matlabroot,'/toolbox/shared/optimlib:', ...
matlabroot,'/toolbox/shared/reqmgt:', ...
matlabroot,'/toolbox/shared/reqmgt/mmutils:', ...
matlabroot,'/toolbox/matlab/connector2/shadowfiles:', ...
matlabroot,'/toolbox/shared/cxxfe_mi/cxxfe_mi:', ...
matlabroot,'/toolbox/realtime:', ...
matlabroot,'/toolbox/realtime/realtime:', ...
matlabroot,'/toolbox/realtime/realtime/rtw:', ...
matlabroot,'/toolbox/pde/pdedemos:', ...
matlabroot,'/toolbox/physmod/common/dataservices/core/m:', ...
matlabroot,'/toolbox/fixedpoint/fixedpointtool:', ...
matlabroot,'/toolbox/shared/slcontrollib:', ...
matlabroot,'/toolbox/matlab/connector2/json:', ...
matlabroot,'/toolbox/symbolic/symbolic:', ...
matlabroot,'/toolbox/coder/codegendemos:', ...
matlabroot,'/toolbox/shared/sl_web_widgets:', ...
matlabroot,'/toolbox/globaloptim/globaloptimdemos:', ...
matlabroot,'/toolbox/physmod/sm/local/m:', ...
matlabroot,'/toolbox/matlab/reports:', ...
matlabroot,'/toolbox/matlab/external/interfaces/python:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner/interface:', ...
matlabroot,'/toolbox/ident/iddemos:', ...
matlabroot,'/toolbox/ident/iddemos/examples:', ...
matlabroot,'/toolbox/shared/sldv:', ...
matlabroot,'/toolbox/gpucoder/gpucoder:', ...
matlabroot,'/toolbox/gpucoder/gpucoder/foundation/build:', ...
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/dsp/dspdemos:', ...
matlabroot,'/toolbox/physmod/pm_sli/pm_sli:', ...
matlabroot,'/toolbox/optim/optimdemos:', ...
matlabroot,'/toolbox/database/dbdemos:', ...
matlabroot,'/toolbox/shared/diagnostic:', ...
matlabroot,'/toolbox/shared/polyspace:', ...
matlabroot,'/toolbox/shared/hwmanager/logger:', ...
matlabroot,'/toolbox/compiler:', ...
matlabroot,'/help/toolbox/dsp/examples:', ...
matlabroot,'/toolbox/shared/imageio:', ...
matlabroot,'/toolbox/simulink/simulink/slproject/examples:', ...
matlabroot,'/toolbox/matlab/datatools/plotstab/matlab:', ...
matlabroot,'/toolbox/simulink/mask/iconeditor:', ...
matlabroot,'/toolbox/simulink/simulink/slproject/simulink:', ...
matlabroot,'/toolbox/simulink/simulink/slproject:', ...
matlabroot,'/toolbox/simulink/simulink/slproject/menu:', ...
matlabroot,'/toolbox/matlab/datatools/inspector/matlab:', ...
matlabroot,'/toolbox/instrument/instrumentdemos:', ...
matlabroot,'/toolbox/shared/testmeaslib/general:', ...
matlabroot,'/toolbox/simulink/sta/derivedSignals:', ...
matlabroot,'/toolbox/matlab/connector2/nativebridge:', ...
matlabroot,'/toolbox/physmod/simscape/engine/library/m:', ...
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/simscape/templates:', ...
matlabroot,'/toolbox/shared/dsp/visionhdl/simulink/dsp:', ...
matlabroot,'/toolbox/target/extensions/processor/intelhost/tfl:', ...
matlabroot,'/toolbox/coder/float2fixed:', ...
matlabroot,'/toolbox/coder/float2fixed/demos:', ...
matlabroot,'/toolbox/coder/float2fixed/dmm_emlauthoring:', ...
matlabroot,'/toolbox/coder/float2fixed/custom_logger:', ...
matlabroot,'/toolbox/sltp/execorder:', ...
matlabroot,'/toolbox/shared/mldatx:', ...
matlabroot,'/toolbox/matlab/external/interfaces/json:', ...
matlabroot,'/toolbox/simulink/simulink/iodata/iomap:', ...
matlabroot,'/toolbox/shared/m3i:', ...
matlabroot,'/toolbox/stats/statsdemos:', ...
matlabroot,'/toolbox/shared/spcuilib/logicanalyzer:', ...
matlabroot,'/toolbox/matlab/toolstrip:', ...
matlabroot,'/toolbox/control/ctrldemos:', ...
matlabroot,'/toolbox/shared/hwconnectinstaller/common:', ...
matlabroot,'/toolbox/matlab/storage/mldrivedesktop:', ...
matlabroot,'/toolbox/shared/simulink:', ...
matlabroot,'/toolbox/physmod/simscape/engine/sli/m:', ...
matlabroot,'/toolbox/shared/dspblks/dspblks:', ...
matlabroot,'/toolbox/shared/dspblks/dspmex:', ...
matlabroot,'/toolbox/rtw/targets/AUTOSAR/AUTOSAR/dataclasses:', ...
matlabroot,'/toolbox/rtw/targets/AUTOSAR/AUTOSAR:', ...
matlabroot,'/toolbox/physmod/mech/mechdemos:', ...
matlabroot,'/toolbox/sltp/editor:', ...
matlabroot,'/toolbox/shared/eda/fpgabase:', ...
matlabroot,'/toolbox/coder/connectivity:', ...
matlabroot,'/toolbox/rtw/targets/connectivity:', ...
matlabroot,'/toolbox/simulink/sl_async_streaming:', ...
matlabroot,'/toolbox/shared/sl_coverage_configset:', ...
matlabroot,'/toolbox/shared/dsp/scopes:', ...
matlabroot,'/toolbox/physmod/simscape/compiler/mli/m:', ...
matlabroot,'/toolbox/shared/dastudio/seqdiagram:', ...
matlabroot,'/toolbox/shared/multimedia:', ...
matlabroot,'/toolbox/matlab/connector2/configuration:', ...
matlabroot,'/toolbox/simulink/sta/repository:', ...
matlabroot,'/toolbox/simulink/sta/repository/util:', ...
matlabroot,'/toolbox/matlab/connector2/worker:', ...
matlabroot,'/toolbox/physmod/common/data/mli/m:', ...
matlabroot,'/toolbox/dig/dig:', ...
matlabroot,'/toolbox/physmod/sm/templates:', ...
matlabroot,'/toolbox/bioinfo/biodemos:', ...
matlabroot,'/toolbox/shared/cgxe/cgxe:', ...
matlabroot,'/toolbox/hdlcoder/hdllib/sl_lib:', ...
matlabroot,'/toolbox/shared/controllib/graphics:', ...
matlabroot,'/toolbox/shared/controllib/graphics/utils:', ...
matlabroot,'/toolbox/shared/controllib/graphics/plotoptions:', ...
matlabroot,'/toolbox/physmod/sm/foundation/mech:', ...
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,'/toolbox/shared/hwmanager/hwsetup:', ...
matlabroot,'/toolbox/shared/hwmanager/hwsetup/hwwidgets:', ...
matlabroot,'/toolbox/shared/hwmanager/hwsetup/hwtemplates:', ...
matlabroot,'/toolbox/shared/hwmanager/hwsetup/launch:', ...
matlabroot,'/help/toolbox/control/examples:', ...
matlabroot,'/toolbox/shared/deviceplugindetection:', ...
matlabroot,'/toolbox/shared/sl_async_streaming:', ...
matlabroot,'/toolbox/matlab/supportpackagemanagement:', ...
matlabroot,'/toolbox/matlab/timeseries:', ...
matlabroot,'/toolbox/shared/eda/hdlparser:', ...
matlabroot,'/toolbox/matlab/configtools:', ...
matlabroot,'/toolbox/physmod/sm/sli/m:', ...
matlabroot,'/toolbox/robust/rctdemos:', ...
matlabroot,'/toolbox/shared/dataflow/dataflowsimulink/dfs:', ...
matlabroot,'/help/toolbox/slcontrol/examples:', ...
matlabroot,'/toolbox/shared/dastudio:', ...
matlabroot,'/toolbox/stats/mlearnapp:', ...
matlabroot,'/toolbox/fixpoint:', ...
matlabroot,'/toolbox/fixpoint/fpca:', ...
matlabroot,'/toolbox/physmod/sm/sm/m:', ...
matlabroot,'/toolbox/dsp/templates:', ...
matlabroot,'/help/toolbox/robust/examples:', ...
matlabroot,'/toolbox/shared/dataflow/dataflowvisualization:', ...
matlabroot,'/toolbox/shared/sldv_sfcn/sldv_sfcn:', ...
matlabroot,'/toolbox/distcomp/bigdata:', ...
matlabroot,'/toolbox/matlab/networklib:', ...
matlabroot,'/toolbox/fixedpoint/fixedpoint:', ...
matlabroot,'/toolbox/matlab/spf/matlabhost:', ...
matlabroot,'/toolbox/matlab/connector2/usmatlabhost:', ...
matlabroot,'/toolbox/compiler_sdk:', ...
matlabroot,'/toolbox/physmod/simscape/simscape/m:', ...
matlabroot,'/toolbox/physmod/simscape/engine/core/m:', ...
matlabroot,'/toolbox/compiler/java:', ...
matlabroot,'/toolbox/shared/system/simulink:', ...
matlabroot,'/toolbox/shared/measure:', ...
matlabroot,'/toolbox/shared/hotpluglib:', ...
matlabroot,'/toolbox/physmod/simscape/library/m:', ...
matlabroot,'/toolbox/shared/io:', ...
matlabroot,'/toolbox/shared/sfcnlvl3/target:', ...
matlabroot,'/toolbox/shared/sfcnlvl3/ddg:', ...
matlabroot,'/toolbox/matlab/connector2/editor:', ...
matlabroot,'/toolbox/curvefit/curvefit:', ...
matlabroot,'/toolbox/curvefit/splines:', ...
matlabroot,'/toolbox/curvefit/sftoolgui:', ...
matlabroot,'/toolbox/shared/spcuilib/slscopes:', ...
matlabroot,'/toolbox/shared/testmeaslib/simulink:', ...
matlabroot,'/toolbox/shared/eda/fil:', ...
matlabroot,'/toolbox/shared/eda/fil/filmapi:', ...
matlabroot,'/toolbox/physmod/common/gl/sli/m:', ...
matlabroot,'/toolbox/curvefit/curvefitdemos:', ...
matlabroot,'/toolbox/physmod/mech/mech:', ...
matlabroot,'/toolbox/physmod/mech/importer:', ...
matlabroot,'/toolbox/signal/signal:', ...
matlabroot,'/toolbox/signal/sigtools:', ...
matlabroot,'/toolbox/signal/sptoolgui:', ...
matlabroot,'/toolbox/stats/gpu:', ...
matlabroot,'/toolbox/pde:', ...
matlabroot,'/toolbox/pde/pdedata:', ...
matlabroot,'/toolbox/matlab/connector2/visualization:', ...
matlabroot,'/toolbox/shared/system/coreblocks:', ...
matlabroot,'/toolbox/simulink/fixedandfloat:', ...
matlabroot,'/toolbox/simulink/fixedandfloat/obsolete:', ...
matlabroot,'/toolbox/physmod/sm/core/m:', ...
matlabroot,'/toolbox/physmod/sm/import/m:', ...
matlabroot,'/toolbox/shared/siglib:', ...
matlabroot,'/toolbox/coder/coverage:', ...
matlabroot,'/toolbox/matlab/connector2/connector:', ...
matlabroot,'/toolbox/shared/controllib/general:', ...
matlabroot,'/toolbox/wavelet/wavedemo:', ...
matlabroot,'/toolbox/matlab/datatools/variableeditor/matlab:', ...
matlabroot,'/toolbox/shared/slci/slci:', ...
matlabroot,'/toolbox/eml/eml:', ...
matlabroot,'/toolbox/physmod/common/foundation/mli/m:', ...
matlabroot,'/toolbox/shared/sl_messages:', ...
matlabroot,'/toolbox/simulink/simulink_data_dictionary/sldd:', ...
matlabroot,'/toolbox/globaloptim:', ...
matlabroot,'/toolbox/globaloptim/globaloptim:', ...
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,'/toolbox/signal/sigdemos:', ...
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/simscape/simscapedemos:', ...
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/sl3d/sl3ddemos:', ...
matlabroot,'/toolbox/physmod/simscape/foundation/simscape:', ...
matlabroot,'/toolbox/matlab/pathtool:', ...
matlabroot,'/toolbox/symbolic/symbolicdemos:', ...
matlabroot,'/toolbox/matlab/webcam:', ...
matlabroot,'/toolbox/matlab/cefclient:', ...
matlabroot,'/toolbox/imaq/imaqdemos:', ...
matlabroot,'/toolbox/simulink/blocks/sb2sl:', ...
matlabroot,'/toolbox/coder/coder:', ...
matlabroot,'/toolbox/physmod/common/external/mli/m:', ...
matlabroot,'/toolbox/compiler/mltall:', ...
matlabroot,'/toolbox/simulink/ui/sl_studio/sl_studio:', ...
matlabroot,'/toolbox/coder/trace:', ...
matlabroot,'/toolbox/matlab/external/engines/engine_api:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/plugin/appdesigner:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/plugin/appdesigner/graphics:', ...
matlabroot,'/toolbox/control/control:', ...
matlabroot,'/toolbox/control/ctrlmodels:', ...
matlabroot,'/toolbox/control/ctrlanalysis:', ...
matlabroot,'/toolbox/control/ctrldesign:', ...
matlabroot,'/toolbox/control/ctrlplots:', ...
matlabroot,'/toolbox/control/ctrlguis:', ...
matlabroot,'/toolbox/control/ctrlobsolete:', ...
matlabroot,'/toolbox/control/ctrlutil:', ...
matlabroot,'/toolbox/matlab/toolbox_packaging:', ...
matlabroot,'/toolbox/matlab/uitools/uicomponents/components:', ...
matlabroot,'/toolbox/idelink/idelinkdemos:', ...
matlabroot,'/toolbox/idelink/extensions/ticcs/ccsdemos:', ...
matlabroot,'/toolbox/idelink/extensions/ticcs/ccsdemos/util:', ...
matlabroot,'/toolbox/hdlcoder/hdlcommon:', ...
matlabroot,'/toolbox/hdlcoder/hdlcommon/modelcheckeradvisor:', ...
matlabroot,'/toolbox/compiler_sdk/java:', ...
matlabroot,'/toolbox/matlab/spf/matlabservices:', ...
matlabroot,'/toolbox/target/extensions/processor/tic2000:', ...
matlabroot,'/toolbox/target/extensions/processor/tic2000/rtw:', ...
matlabroot,'/toolbox/target/extensions/processor/tic2000/utils:', ...
matlabroot,'/toolbox/shared/supportsoftware/launcher:', ...
matlabroot,'/toolbox/shared/supportsoftware/services:', ...
matlabroot,'/toolbox/sl_pir_cap:', ...
matlabroot,'/toolbox/matlab/connector2/messageservice:', ...
matlabroot,'/toolbox/shared/slreportgen/reportexplorer:', ...
matlabroot,'/toolbox/shared/eda/board:', ...
matlabroot,'/toolbox/physmod/simscape/reg/m:', ...
matlabroot,'/toolbox/shared/spcuilib:', ...
matlabroot,'/toolbox/compiler/compilerdemos:', ...
matlabroot,'/toolbox/matlab/connector2/file:', ...
matlabroot,'/toolbox/shared/imaqlib:', ...
matlabroot,'/toolbox/matlab/connector2/framework:', ...
matlabroot,'/toolbox/shared/simulink/sysarch/sysarch:', ...
matlabroot,'/toolbox/simulink/compiled_model_interface:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/graphics:', ...
matlabroot,'/toolbox/shared/hdlshared/hdlshared_soc:', ...
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/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/tfl:', ...
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/sldv/sldv:', ...
matlabroot,'/toolbox/shared/mlreportgen/dom:', ...
matlabroot,'/toolbox/shared/mlreportgen/dom/dom:', ...
matlabroot,'/toolbox/shared/mlreportgen/dom/dom/help:', ...
matlabroot,'/toolbox/slvnv/simcoverage:', ...
matlabroot,'/toolbox/javabuilder/javabuilder:', ...
matlabroot,'/toolbox/physmod/common/dataservices/sli/m:', ...
matlabroot,'/toolbox/shared/statslib:', ...
matlabroot,'/toolbox/shared/statslib/sensitivity:', ...
matlabroot,'/toolbox/shared/hdlshared:', ...
matlabroot,'/toolbox/matlab/connector2/restmatlab:', ...
matlabroot,'/toolbox/matlab/connector2/figures:', ...
matlabroot,'/toolbox/shared/eda/fpgaautomation:', ...
matlabroot,'/toolbox/shared/eda/fpgaautomation/obsolete:', ...
matlabroot,'/toolbox/coder/codedescriptor_core:', ...
matlabroot,'/toolbox/matlab/addons:', ...
matlabroot,'/toolbox/matlab/addons/cef:', ...
matlabroot,'/toolbox/matlab/addons/fallbackmanager:', ...
matlabroot,'/toolbox/matlab/addons/supportpackages:', ...
matlabroot,'/toolbox/coder/rtiostream:', ...
matlabroot,'/toolbox/shared/multibody/multibodylib:', ...
%%% END ENTRIES %%%
...
];
if strncmp(computer, 'PC', 2) % ispc and pathsep not available
separator = ';';
else
separator = ':';
end
p = [userpath separator getenv('MATLABPATH') separator p];