-
Notifications
You must be signed in to change notification settings - Fork 2
/
pathdef.m
634 lines (627 loc) · 35.7 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
function p = pathdef
%PATHDEF Search path defaults.
% PATHDEF returns a string that can be used as input to MATLABPATH
% in order to set the path.
% Copyright 1984-2021 The MathWorks, Inc.
% DO NOT MODIFY THIS FILE. THE LIST OF ENTRIES IS AUTOGENERATED BY THE
% INSTALLER, SAVEPATH, OR OTHER TOOLS. EDITING THE FILE MAY CAUSE THE FILE
% TO BECOME UNREADABLE TO THE PATHTOOL AND THE INSTALLER.
p = [...
%%% BEGIN ENTRIES %%%
matlabroot,'/toolbox/matlab/appdesigner/comparisons/mldesktop_m:', ...
matlabroot,'/toolbox/matlab/strfun:', ...
matlabroot,'/toolbox/matlab/strfun/validators:', ...
matlabroot,'/toolbox/matlab/datafun:', ...
matlabroot,'/toolbox/matlab/datatools/peermodel_mcos/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_tlc_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/external/engines/codegen:', ...
matlabroot,'/toolbox/matlab/codeanalysis/reports/analysis:', ...
matlabroot,'/toolbox/matlab/addon_enable_disable_management/matlab:', ...
matlabroot,'/toolbox/matlab/testframework/ui/toolstrip:', ...
matlabroot,'/toolbox/matlab/registration_framework/matlab:', ...
matlabroot,'/toolbox/matlab/networklib:', ...
matlabroot,'/toolbox/matlab/toolboxmanagement/matlab_api:', ...
matlabroot,'/toolbox/matlab/htmlviewer:', ...
matlabroot,'/toolbox/matlab/polyfun:', ...
matlabroot,'/toolbox/matlab/datatypes/struct:', ...
matlabroot,'/toolbox/matlab/project/views/util:', ...
matlabroot,'/toolbox/matlab/datatypes/datetime_nonlibmatlab:', ...
matlabroot,'/toolbox/matlab/datatools/desktop_importtool/matlab:', ...
matlabroot,'/toolbox/matlab/connector2/connector:', ...
matlabroot,'/toolbox/matlab/funfun:', ...
matlabroot,'/toolbox/matlab/io/datastore/range:', ...
matlabroot,'/toolbox/matlab/serial:', ...
matlabroot,'/toolbox/matlab/datatools/workspacebrowser/matlab:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/datetime:', ...
matlabroot,'/toolbox/matlab/indexing:', ...
matlabroot,'/toolbox/matlab/optimfun/gui:', ...
matlabroot,'/toolbox/matlab/datatypes/categorical:', ...
matlabroot,'/toolbox/matlab/io/datastore/legacy:', ...
matlabroot,'/toolbox/matlab/uitools/uicomponents/components:', ...
matlabroot,'/toolbox/matlab/specfun:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/restful:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices:', ...
matlabroot,'/toolbox/matlab/io/word:', ...
matlabroot,'/toolbox/matlab/elmat:', ...
matlabroot,'/toolbox/matlab/project/dependency:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_clike_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/dependency/refactoring:', ...
matlabroot,'/toolbox/matlab/network:', ...
matlabroot,'/toolbox/matlab/codetools:', ...
matlabroot,'/toolbox/matlab/codetools/embeddedoutputs:', ...
matlabroot,'/toolbox/matlab/codetools/embeddedoutputs/DataToolsRegistration:', ...
matlabroot,'/toolbox/matlab/codetools/liveapps:', ...
matlabroot,'/toolbox/matlab/mex:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_js_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/preprocessing:', ...
matlabroot,'/toolbox/matlab/mvm:', ...
matlabroot,'/toolbox/matlab/serialport/apps/serialportapp:', ...
matlabroot,'/toolbox/matlab/updateinstaller:', ...
matlabroot,'/toolbox/matlab/io/archive:', ...
matlabroot,'/toolbox/matlab/datatools/inspector/matlab:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/uicontrol:', ...
matlabroot,'/toolbox/matlab/preferences/workspaceprefpanel/workspaceprefpanel-ui:', ...
matlabroot,'/toolbox/matlab/io/datastore/array:', ...
matlabroot,'/toolbox/matlab/webcam:', ...
matlabroot,'/toolbox/matlab/randfun:', ...
matlabroot,'/toolbox/matlab/audiovideo:', ...
matlabroot,'/toolbox/matlab/hardware/stubs:', ...
matlabroot,'/toolbox/matlab/dependency/app:', ...
matlabroot,'/toolbox/matlab/addons_product:', ...
matlabroot,'/toolbox/matlab/file_chooser/service/matlab:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/tabular:', ...
matlabroot,'/toolbox/matlab/addons:', ...
matlabroot,'/toolbox/matlab/addons/cef:', ...
matlabroot,'/toolbox/matlab/addons/fileexchange:', ...
matlabroot,'/toolbox/matlab/addons/supportpackages:', ...
matlabroot,'/toolbox/matlab/io/filter:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/outputs:', ...
matlabroot,'/toolbox/matlab/project/unsavedchanges:', ...
matlabroot,'/toolbox/matlab/icons:', ...
matlabroot,'/toolbox/matlab/maps:', ...
matlabroot,'/toolbox/matlab/graphics/maps:', ...
matlabroot,'/toolbox/matlab/datatools/editorconverters/matlab:', ...
matlabroot,'/toolbox/matlab/connector2/common:', ...
matlabroot,'/toolbox/matlab/dependency/widget/window:', ...
matlabroot,'/toolbox/matlab/imagesci:', ...
matlabroot,'/toolbox/matlab/external/interfaces/json:', ...
matlabroot,'/toolbox/matlab/sparfun:', ...
matlabroot,'/toolbox/matlab/demos:', ...
matlabroot,'/toolbox/matlab/datatools/widgets/matlab:', ...
matlabroot,'/toolbox/matlab/matfun:', ...
matlabroot,'/toolbox/matlab/apps:', ...
matlabroot,'/toolbox/matlab/cefclient:', ...
matlabroot,'/toolbox/matlab/addons_common/matlab:', ...
matlabroot,'/toolbox/matlab/storage/mldrivedesktop:', ...
matlabroot,'/toolbox/matlab/helptools/reference:', ...
matlabroot,'/toolbox/matlab/project/views/references:', ...
matlabroot,'/toolbox/matlab/helptools_js/matlab_colon_docservice/m:', ...
matlabroot,'/toolbox/matlab/dependency/analysis:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/plugin/appdesigner:', ...
matlabroot,'/toolbox/matlab/networklib/apps/tcpclientapp:', ...
matlabroot,'/toolbox/matlab/io/xml:', ...
matlabroot,'/toolbox/matlab/profileviewer:', ...
matlabroot,'/toolbox/matlab/bigdata:', ...
matlabroot,'/toolbox/matlab/project:', ...
matlabroot,'/toolbox/matlab/project/example:', ...
matlabroot,'/toolbox/matlab/project/toolstrip:', ...
matlabroot,'/toolbox/matlab/io/html:', ...
matlabroot,'/toolbox/matlab/system:', ...
matlabroot,'/toolbox/matlab/connector2/shadowfiles:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/duration:', ...
matlabroot,'/toolbox/matlab/uitools/mofigurehelperfunc:', ...
matlabroot,'/toolbox/matlab/dependency/widget/progress_web:', ...
matlabroot,'/toolbox/matlab/datatypes/calendarDuration:', ...
matlabroot,'/toolbox/matlab/io/datastore/parquet:', ...
matlabroot,'/toolbox/matlab/external/interfaces/java/jmi:', ...
matlabroot,'/toolbox/matlab/login:', ...
matlabroot,'/toolbox/matlab/external/interfaces/cpp:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/figureoutputs:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_xml_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/dependency/report:', ...
matlabroot,'/toolbox/matlab/verctrl:', ...
matlabroot,'/toolbox/matlab/datatypes/applyfuns:', ...
matlabroot,'/toolbox/matlab/datatools/importtool/matlab/peer:', ...
matlabroot,'/toolbox/matlab/io/datastore/tall:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner:', ...
matlabroot,'/toolbox/matlab/connector2/mgg:', ...
matlabroot,'/toolbox/matlab/winfun:', ...
matlabroot,'/toolbox/matlab/winfun/NET:', ...
matlabroot,'/toolbox/matlab/graphfun/codegen:', ...
matlabroot,'/toolbox/matlab/datatools/datatoolsservices/matlab:', ...
matlabroot,'/toolbox/matlab/depfun:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/databrowser:', ...
matlabroot,'/toolbox/matlab/codeanalysis/tools:', ...
matlabroot,'/toolbox/matlab/connector2/session:', ...
matlabroot,'/toolbox/matlab/capabilities:', ...
matlabroot,'/toolbox/matlab/general:', ...
matlabroot,'/toolbox/matlab/testframework/mock/core:', ...
matlabroot,'/toolbox/matlab/testframework/mock/core/masked:', ...
matlabroot,'/toolbox/matlab/connector2/restmatlab:', ...
matlabroot,'/toolbox/matlab/io/datastore/file:', ...
matlabroot,'/toolbox/matlab/filesystem/services/matlab:', ...
matlabroot,'/toolbox/matlab/datatypes/tabular:', ...
matlabroot,'/toolbox/matlab/findfiles/m:', ...
matlabroot,'/toolbox/matlab/parquetds:', ...
matlabroot,'/toolbox/matlab/datatools/plotstab/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/desktop_variableeditor/matlab:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/outpututilities:', ...
matlabroot,'/toolbox/matlab/testframework/unittest/parallel:', ...
matlabroot,'/toolbox/matlab/toolstrip:', ...
matlabroot,'/toolbox/matlab/io/ftp:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/graphics:', ...
matlabroot,'/toolbox/matlab/uicomponents/uicomponents/style:', ...
matlabroot,'/toolbox/matlab/io/functions:', ...
matlabroot,'/toolbox/matlab/bluetooth:', ...
matlabroot,'/toolbox/matlab/project/preferences:', ...
matlabroot,'/toolbox/matlab/io/filesystem:', ...
matlabroot,'/toolbox/matlab/datatools/media_widgets/matlab:', ...
matlabroot,'/toolbox/matlab/ddux:', ...
matlabroot,'/toolbox/matlab/configtools:', ...
matlabroot,'/toolbox/matlab/testframework/performance/core:', ...
matlabroot,'/toolbox/matlab/testframework/uitest:', ...
matlabroot,'/toolbox/matlab/datatypes/shared/codegen:', ...
matlabroot,'/toolbox/matlab/project/views/unsavedchanges:', ...
matlabroot,'/toolbox/matlab/richcontent_preview/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_java_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/taskpool:', ...
matlabroot,'/toolbox/matlab/dependency/attribute:', ...
matlabroot,'/toolbox/matlab/appdesigner/matlab_integration/cfb/cfb:', ...
matlabroot,'/toolbox/matlab/indentcode/m:', ...
matlabroot,'/toolbox/matlab/testframework/measurement/core:', ...
matlabroot,'/toolbox/matlab/dataui:', ...
matlabroot,'/toolbox/matlab/connector2/messageservice:', ...
matlabroot,'/toolbox/matlab/parallel:', ...
matlabroot,'/toolbox/matlab/io/datastore/spreadsheet:', ...
matlabroot,'/toolbox/matlab/io/parquet:', ...
matlabroot,'/toolbox/matlab/datamanager:', ...
matlabroot,'/toolbox/matlab/testframework/unittest/ext:', ...
matlabroot,'/toolbox/matlab/connector2/http:', ...
matlabroot,'/toolbox/matlab/system/editor:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_python_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/graphics/hg:', ...
matlabroot,'/toolbox/matlab/datatools/importtool/matlab/server:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_vhdl_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/testframework/measurement/ext:', ...
matlabroot,'/toolbox/matlab/connector2/logger:', ...
matlabroot,'/toolbox/matlab/helptools_js/link_click_handling_docservice/m:', ...
matlabroot,'/toolbox/matlab/strfun/pattern:', ...
matlabroot,'/toolbox/matlab/dependency/comparisons/mldesktop/matlab:', ...
matlabroot,'/toolbox/matlab/addon_updates/matlab:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_mlike_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner/runtime:', ...
matlabroot,'/toolbox/matlab/timefun:', ...
matlabroot,'/toolbox/matlab/serialport:', ...
matlabroot,'/toolbox/matlab/urlmanager:', ...
matlabroot,'/toolbox/matlab/storage/matlabdrive:', ...
matlabroot,'/toolbox/matlab/addressbar_plugins/browse_for_folder_button/matlab:', ...
matlabroot,'/toolbox/matlab/addressbar_plugins/cd_up_one_dir_button/matlab:', ...
matlabroot,'/toolbox/matlab/external/engines/engine_api:', ...
matlabroot,'/toolbox/matlab/project/comparison:', ...
matlabroot,'/toolbox/matlab/datatypes/datetime:', ...
matlabroot,'/toolbox/matlab/io/datastore/text:', ...
matlabroot,'/toolbox/matlab/oss:', ...
matlabroot,'/toolbox/matlab/ops:', ...
matlabroot,'/toolbox/matlab/datatypes:', ...
matlabroot,'/toolbox/matlab/filebrowser:', ...
matlabroot,'/toolbox/matlab/external/mex:', ...
matlabroot,'/toolbox/matlab/parquetio:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/categorical:', ...
matlabroot,'/toolbox/matlab/io/spreadsheet:', ...
matlabroot,'/toolbox/matlab/connector2/interpreter:', ...
matlabroot,'/toolbox/matlab/guide:', ...
matlabroot,'/toolbox/matlab/project/creation/fromfile:', ...
matlabroot,'/toolbox/matlab/project/creation/fromarchive:', ...
matlabroot,'/toolbox/matlab/reports:', ...
matlabroot,'/toolbox/matlab/connector2/editor:', ...
matlabroot,'/toolbox/matlab/io/datastore/image:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/wsdl:', ...
matlabroot,'/toolbox/matlab/testframework/performance/ext:', ...
matlabroot,'/toolbox/matlab/datatypes/duration:', ...
matlabroot,'/toolbox/matlab/project/views/action_web/project-action-ui/matlab:', ...
matlabroot,'/toolbox/matlab/addons_registry/matlab:', ...
matlabroot,'/toolbox/matlab/matlab_preferences/matlab:', ...
matlabroot,'/toolbox/matlab/helptools/docsearch_server:', ...
matlabroot,'/toolbox/matlab/validators:', ...
matlabroot,'/toolbox/matlab/connector2/worker:', ...
matlabroot,'/toolbox/matlab/datatypes/cell:', ...
matlabroot,'/toolbox/matlab/datastoreio:', ...
matlabroot,'/toolbox/matlab/iot:', ...
matlabroot,'/toolbox/matlab/optimfun:', ...
matlabroot,'/toolbox/matlab/images:', ...
matlabroot,'/toolbox/matlab/connector2/nativebridge:', ...
matlabroot,'/toolbox/matlab/resources_folder:', ...
matlabroot,'/toolbox/matlab/supportpackagemanagement:', ...
matlabroot,'/toolbox/matlab/external/interfaces/python:', ...
matlabroot,'/toolbox/matlab/appcontainer/appcontainer:', ...
matlabroot,'/toolbox/matlab/preferences/variablesprefpanel/variablesprefpanel-ui:', ...
matlabroot,'/toolbox/matlab/graph2d:', ...
matlabroot,'/toolbox/matlab/graph3d:', ...
matlabroot,'/toolbox/matlab/graphics:', ...
matlabroot,'/toolbox/matlab/graphics/annotation:', ...
matlabroot,'/toolbox/matlab/graphics/axis:', ...
matlabroot,'/toolbox/matlab/graphics/chart:', ...
matlabroot,'/toolbox/matlab/graphics/color:', ...
matlabroot,'/toolbox/matlab/graphics/function:', ...
matlabroot,'/toolbox/matlab/graphics/illustration:', ...
matlabroot,'/toolbox/matlab/graphics/legacy:', ...
matlabroot,'/toolbox/matlab/graphics/obsolete:', ...
matlabroot,'/toolbox/matlab/graphics/printing:', ...
matlabroot,'/toolbox/matlab/graphics/objectsystem:', ...
matlabroot,'/toolbox/matlab/graphics/primitive:', ...
matlabroot,'/toolbox/matlab/plottools:', ...
matlabroot,'/toolbox/matlab/scribe:', ...
matlabroot,'/toolbox/matlab/scribe/obsolete:', ...
matlabroot,'/toolbox/matlab/specgraph:', ...
matlabroot,'/toolbox/matlab/uitools:', ...
matlabroot,'/toolbox/matlab/uitools/obsolete:', ...
matlabroot,'/toolbox/matlab/connector2/configuration:', ...
matlabroot,'/toolbox/matlab/rtc_addons/rtclanguagesupport/rtc_verilog_language_support/matlab:', ...
matlabroot,'/toolbox/matlab/io/datastore/fileset:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/http:', ...
matlabroot,'/toolbox/matlab/editor/cfb_integration/editor_actions/matlab:', ...
matlabroot,'/toolbox/matlab/connector2/figures:', ...
matlabroot,'/toolbox/matlab/iofun:', ...
matlabroot,'/toolbox/matlab/lang:', ...
matlabroot,'/toolbox/matlab/testframework/unittest/core:', ...
matlabroot,'/toolbox/matlab/testframework/unittest/core/masked:', ...
matlabroot,'/toolbox/matlab/testframework/obsolete:', ...
matlabroot,'/toolbox/matlab/project/views/core:', ...
matlabroot,'/toolbox/matlab/pathtool:', ...
matlabroot,'/toolbox/matlab/dependency/widget/progress:', ...
matlabroot,'/toolbox/matlab/project/views/labels:', ...
matlabroot,'/toolbox/matlab/toolbox_packaging:', ...
matlabroot,'/toolbox/matlab/datatypes/shared/matlab_datatypes:', ...
matlabroot,'/toolbox/matlab/datatools/desktop_workspacebrowser/matlab:', ...
matlabroot,'/toolbox/matlab/debugger:', ...
matlabroot,'/toolbox/matlab/elfun:', ...
matlabroot,'/toolbox/matlab/dependency/matlab:', ...
matlabroot,'/toolbox/matlab/plottools/inspector:', ...
matlabroot,'/toolbox/matlab/iot/connectivity:', ...
matlabroot,'/toolbox/matlab/testframework/uiautomation:', ...
matlabroot,'/toolbox/matlab/helptools:', ...
matlabroot,'/toolbox/matlab/storage/mldrivejsplugins/matlabdrive_js/matlab:', ...
matlabroot,'/toolbox/matlab/storage/mldrivejsplugins/sharing_actions/matlab:', ...
matlabroot,'/toolbox/matlab/storage/mldrivejsplugins/tripwire_button/matlab:', ...
matlabroot,'/toolbox/matlab/io/text:', ...
matlabroot,'/toolbox/matlab/io/datastore/keyvalue:', ...
matlabroot,'/toolbox/matlab/licensing:', ...
matlabroot,'/toolbox/matlab/datatools/variableeditor/matlab:', ...
matlabroot,'/toolbox/matlab/graphics/math:', ...
matlabroot,'/toolbox/matlab/mapreduceio:', ...
matlabroot,'/toolbox/matlab/graphfun:', ...
matlabroot,'/toolbox/matlab/io/datastore/common:', ...
matlabroot,'/toolbox/matlab/datatypes/cell_nonlibmatlab:', ...
matlabroot,'/toolbox/matlab/datatools/matlab_integration/cfb/matlab:', ...
matlabroot,'/toolbox/matlab/timeseries:', ...
matlabroot,'/toolbox/matlab/project/cfbfileinfoplugin/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/inspector/registration:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner/interface:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/variableoutputs:', ...
matlabroot,'/toolbox/local:', ...
matlabroot,'/toolbox/simulink/simulink_data_dictionary/sldd:', ...
matlabroot,'/toolbox/simulink/simulink/slproject:', ...
matlabroot,'/toolbox/simulink/configset_model/m:', ...
matlabroot,'/toolbox/simulink/configset_model/configset:', ...
matlabroot,'/toolbox/simulink/configset_model/configset/derived:', ...
matlabroot,'/toolbox/stateflow/sf_file_preview_plugin/matlab:', ...
matlabroot,'/toolbox/rtw/targets/connectivity:', ...
matlabroot,'/toolbox/rtw/rtw:', ...
matlabroot,'/examples/labelers_shared/data:', ...
matlabroot,'/toolbox/shared/signallabelutils/signallabelutils:', ...
matlabroot,'/toolbox/nnet/nnviz:', ...
matlabroot,'/toolbox/targetframework/model/foundation/matlab:', ...
matlabroot,'/toolbox/shared/slcc_cov/slcc_cov:', ...
matlabroot,'/toolbox/shared/cmlink/matlab:', ...
matlabroot,'/toolbox/parallel/web/plugins/runasbatchjob/matlab:', ...
matlabroot,'/toolbox/nnet/deep_blocks:', ...
matlabroot,'/toolbox/shared/images_datatypes:', ...
matlabroot,'/toolbox/stats/builtins:', ...
matlabroot,'/toolbox/shared/supportpkgservices/legacysupportpkginfo:', ...
matlabroot,'/toolbox/shared/supportpkgservices/installservices:', ...
matlabroot,'/toolbox/shared/supportpkgservices/supportpackageroot:', ...
matlabroot,'/toolbox/shared/supportpkgservices/installedapi:', ...
matlabroot,'/toolbox/comparisons/zip/mldesktop/matlab:', ...
matlabroot,'/toolbox/shared/polyspace/configure_mi:', ...
matlabroot,'/toolbox/shared/hwconnectinstaller/common:', ...
matlabroot,'/toolbox/shared/configset_view/m:', ...
matlabroot,'/toolbox/shared/performance:', ...
matlabroot,'/toolbox/signal/edffileanalyzer/src:', ...
matlabroot,'/toolbox/shared/cmlink/view/action_web/cmlink-action-ui/matlab:', ...
matlabroot,'/toolbox/shared/mlreportgen/xml/xml/help:', ...
matlabroot,'/toolbox/shared/image_io/imageio_builtins:', ...
matlabroot,'/toolbox/parallel/mpi:', ...
matlabroot,'/toolbox/shared/polyspace:', ...
matlabroot,'/toolbox/shared/cmlink/preferences:', ...
matlabroot,'/toolbox/signal/signalanalyzer:', ...
matlabroot,'/examples/control_deeplearning/data:', ...
matlabroot,'/toolbox/shared/cmlink/view/core:', ...
matlabroot,'/examples/predmaint_shared/data:', ...
matlabroot,'/toolbox/stats/anomaly:', ...
matlabroot,'/toolbox/stats/bayesoptim:', ...
matlabroot,'/toolbox/stats/bigdata:', ...
matlabroot,'/toolbox/stats/classreg:', ...
matlabroot,'/toolbox/stats/clustering:', ...
matlabroot,'/toolbox/stats/featlearn:', ...
matlabroot,'/toolbox/stats/incremental:', ...
matlabroot,'/toolbox/stats/stats:', ...
matlabroot,'/toolbox/stats/semisupervised:', ...
matlabroot,'/toolbox/shared/siglib:', ...
matlabroot,'/toolbox/shared/cmlink/view/util/m:', ...
matlabroot,'/toolbox/comparisons/binary/mldesktop/matlab:', ...
matlabroot,'/toolbox/shared/cgir_fe:', ...
matlabroot,'/toolbox/shared/spcuilib/applications:', ...
matlabroot,'/toolbox/targetframework/matlab:', ...
matlabroot,'/toolbox/shared/coder/coder:', ...
matlabroot,'/toolbox/shared/coder/coder/gpucoder:', ...
matlabroot,'/toolbox/shared/coder/reportinfo:', ...
matlabroot,'/toolbox/shared/bigdata:', ...
matlabroot,'/toolbox/coder/coder_halide:', ...
matlabroot,'/toolbox/experiments/experiments:', ...
matlabroot,'/toolbox/shared/hotpluglib:', ...
matlabroot,'/toolbox/parallel/pctdemos:', ...
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/matlab/testframework/baselines:', ...
matlabroot,'/toolbox/shared/datacreation:', ...
matlabroot,'/toolbox/shared/datacreation/task:', ...
matlabroot,'/toolbox/shared/datacreation/task/codegenerator:', ...
matlabroot,'/toolbox/shared/datacreation/task/interface:', ...
matlabroot,'/toolbox/shared/datacreation/task/ui:', ...
matlabroot,'/toolbox/shared/datacreation/uicomponent:', ...
matlabroot,'/toolbox/shared/datacreation/datagenerator:', ...
matlabroot,'/toolbox/signal/deep:', ...
matlabroot,'/toolbox/shared/audio/signallabeler:', ...
matlabroot,'/examples/nnet/data:', ...
matlabroot,'/toolbox/shared/matlab/testframework/baselines_sdi:', ...
matlabroot,'/toolbox/shared/hwmanager/logger:', ...
matlabroot,'/toolbox/shared/labelutils/labelutils:', ...
matlabroot,'/toolbox/shared/controllib/estimation:', ...
matlabroot,'/toolbox/shared/viewmodel/viewmodel:', ...
matlabroot,'/toolbox/parallel/bigdata:', ...
matlabroot,'/toolbox/parallel:', ...
matlabroot,'/toolbox/parallel/distcomp:', ...
matlabroot,'/toolbox/parallel/user:', ...
matlabroot,'/toolbox/parallel/lang:', ...
matlabroot,'/toolbox/parallel/cluster:', ...
matlabroot,'/toolbox/shared/advisor:', ...
matlabroot,'/toolbox/shared/diagnostic:', ...
matlabroot,'/toolbox/shared/cxxfe_mi/cxxfe_mi:', ...
matlabroot,'/toolbox/shared/mlreportgen/utils:', ...
matlabroot,'/toolbox/curvefit/curvefitdemos:', ...
matlabroot,'/toolbox/shared/instrument:', ...
matlabroot,'/toolbox/shared/spcuilib/webscopes:', ...
matlabroot,'/toolbox/coder/coder:', ...
matlabroot,'/toolbox/parallel/gpu:', ...
matlabroot,'/toolbox/shared/optimlib:', ...
matlabroot,'/toolbox/parallel/web/preferences/src:', ...
matlabroot,'/toolbox/shared/system/simulink_block:', ...
matlabroot,'/examples/matlab/data:', ...
matlabroot,'/toolbox/shared/sdi_matlabunit:', ...
matlabroot,'/toolbox/shared/spreadsheet:', ...
matlabroot,'/toolbox/shared/mldatx:', ...
matlabroot,'/toolbox/shared/mldatx/file_preview_plugin/matlab:', ...
matlabroot,'/toolbox/shared/maputils:', ...
matlabroot,'/toolbox/shared/hwmanager/hwsetup:', ...
matlabroot,'/toolbox/shared/hwmanager/hwsetup/hwwidgets:', ...
matlabroot,'/toolbox/shared/hwmanager/hwsetup/hwtemplates:', ...
matlabroot,'/toolbox/shared/hwmanager/hwsetup/launch:', ...
matlabroot,'/toolbox/shared/template_core:', ...
matlabroot,'/toolbox/nnet/nndemos/nndatasets:', ...
matlabroot,'/toolbox/nnet/deepapp:', ...
matlabroot,'/toolbox/classdiagram/app/core:', ...
matlabroot,'/toolbox/shared/mlreq:', ...
matlabroot,'/toolbox/shared/controllib/general:', ...
matlabroot,'/toolbox/shared/sl_async_streaming:', ...
matlabroot,'/toolbox/fixedpoint/fixedpoint:', ...
matlabroot,'/toolbox/nnet/nnapp:', ...
matlabroot,'/toolbox/shared/deviceplugindetection:', ...
matlabroot,'/toolbox/curvefit/curvefit:', ...
matlabroot,'/toolbox/curvefit/splines:', ...
matlabroot,'/toolbox/curvefit/sftoolgui:', ...
matlabroot,'/toolbox/shared/codergui/codergui:', ...
matlabroot,'/toolbox/stats/gpu:', ...
matlabroot,'/toolbox/shared/curvefitlib:', ...
matlabroot,'/examples/images/data:', ...
matlabroot,'/toolbox/shared/simulink/simulation_data:', ...
matlabroot,'/toolbox/shared/sdi_visuals:', ...
matlabroot,'/toolbox/comparisons/text/view/rptgen/matlab:', ...
matlabroot,'/toolbox/comparisons/view/web3/matlab:', ...
matlabroot,'/toolbox/shared/mlreportgen/ppt:', ...
matlabroot,'/toolbox/shared/mlreportgen/ppt/ppt:', ...
matlabroot,'/toolbox/shared/mlreportgen/ppt/ppt/help:', ...
matlabroot,'/toolbox/shared/mlreportgen/rpt:', ...
matlabroot,'/toolbox/shared/mlreportgen/rpt/rpt:', ...
matlabroot,'/toolbox/nnet/deepviz/lime:', ...
matlabroot,'/toolbox/coder/connectivity_core:', ...
matlabroot,'/toolbox/targetframework/model/target/matlab:', ...
matlabroot,'/toolbox/nnet/nndemos:', ...
matlabroot,'/examples/deeplearning_shared/data:', ...
matlabroot,'/toolbox/shared/mlreportgen/widgets/equation/matlab:', ...
matlabroot,'/toolbox/shared/mlreportgen/xml_xpath/xml_xpath/help:', ...
matlabroot,'/examples/signal/data:', ...
matlabroot,'/toolbox/livecode/comparisons/mldesktop/matlab:', ...
matlabroot,'/toolbox/gpucoder_dl_targets_src:', ...
matlabroot,'/toolbox/shared/hwmanager/hwservices/hwinfo:', ...
matlabroot,'/toolbox/shared/gpu:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/shared:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/hwmgr:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/clientapp:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/devicedetection:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/devices:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/providers:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/plugins:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/hwsetup:', ...
matlabroot,'/toolbox/shared/m3i:', ...
matlabroot,'/toolbox/shared/mlreportgen/dom:', ...
matlabroot,'/toolbox/shared/mlreportgen/dom/dom:', ...
matlabroot,'/toolbox/shared/mlreportgen/dom/dom/help:', ...
matlabroot,'/toolbox/shared/transportlib:', ...
matlabroot,'/toolbox/shared/networklib:', ...
matlabroot,'/toolbox/diagram/editor/web/m:', ...
matlabroot,'/toolbox/comparisons/mat/mldesktop/matlab:', ...
matlabroot,'/toolbox/shared/seriallib:', ...
matlabroot,'/toolbox/shared/statslib:', ...
matlabroot,'/toolbox/shared/statslib/sensitivity:', ...
matlabroot,'/toolbox/targetframework/utilities/supportpackage:', ...
matlabroot,'/toolbox/physmod/simscape/language_editor/m:', ...
matlabroot,'/toolbox/stats/blocks:', ...
matlabroot,'/toolbox/stats/blocks/classregblks:', ...
matlabroot,'/toolbox/comparisons/view/edits:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/devicedata:', ...
matlabroot,'/platform/pf_internal/m:', ...
matlabroot,'/toolbox/shared/testmeaslib/general:', ...
matlabroot,'/toolbox/stats/statsdemos:', ...
matlabroot,'/toolbox/shared/cxxfe/parser_mi/parser_mi:', ...
matlabroot,'/toolbox/coder/codedescriptor_core:', ...
matlabroot,'/toolbox/shared/transportclients:', ...
matlabroot,'/examples/shared_sdi/data:', ...
matlabroot,'/toolbox/comparisons/folder/mldesktop/matlab:', ...
matlabroot,'/toolbox/shared/coder/coder/lib:', ...
matlabroot,'/toolbox/stats/mlearnapps:', ...
matlabroot,'/toolbox/shared/testmeaslib/apps:', ...
matlabroot,'/toolbox/shared/system/coder:', ...
matlabroot,'/toolbox/shared/configset:', ...
matlabroot,'/toolbox/coder/coderapp/screener_cfb/matlab:', ...
matlabroot,'/toolbox/coder/coderapp/cfb/matlab:', ...
matlabroot,'/toolbox/shared/asam/mdf:', ...
matlabroot,'/toolbox/images/imdemos:', ...
matlabroot,'/toolbox/parallel/cluster/discovery:', ...
matlabroot,'/toolbox/shared/blelib:', ...
matlabroot,'/toolbox/signal/sigappsshared:', ...
matlabroot,'/examples/images_deeplearning/data:', ...
matlabroot,'/examples/graphics/data:', ...
matlabroot,'/ui/mw-webwindow/mw-webwindow-m:', ...
matlabroot,'/toolbox/shared/mlreportgen/fop:', ...
matlabroot,'/toolbox/comparisons/text/mldesktop/matlab:', ...
matlabroot,'/toolbox/shared/appdes/services:', ...
matlabroot,'/toolbox/nnet/deepcoder:', ...
matlabroot,'/toolbox/comparisons/mldesktop/action_ui/matlab:', ...
matlabroot,'/toolbox/comparisons/mldesktop/matlab:', ...
matlabroot,'/toolbox/shared/sigwebappsutils/src:', ...
matlabroot,'/toolbox/shared/controllib/graphics:', ...
matlabroot,'/toolbox/shared/controllib/graphics/utils:', ...
matlabroot,'/toolbox/shared/controllib/graphics/plotoptions:', ...
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/shared/virtualfileio:', ...
matlabroot,'/toolbox/coder/connectivity:', ...
matlabroot,'/toolbox/targetframework/data/dmsi/matlabonly:', ...
matlabroot,'/toolbox/coder/coderapp/screener/ml:', ...
matlabroot,'/toolbox/eml/eml:', ...
matlabroot,'/toolbox/classdiagram/app/mcos:', ...
matlabroot,'/toolbox/shared/hwmanager/hwconnection:', ...
matlabroot,'/toolbox/shared/dlcoder_base/dlcoder_base:', ...
matlabroot,'/toolbox/matlabcoder_dl_targets_src:', ...
matlabroot,'/toolbox/curvefit/curvefitterapp:', ...
matlabroot,'/toolbox/hdlcoder/hdllib/ml_lib:', ...
matlabroot,'/toolbox/coder/coderapp/utils/ml:', ...
matlabroot,'/toolbox/coder/compile:', ...
matlabroot,'/toolbox/coder/compile/tools/registry:', ...
matlabroot,'/toolbox/coder/compile/codebuildtests:', ...
matlabroot,'/toolbox/coder/clang_api/interface/ml:', ...
matlabroot,'/toolbox/shared/mlreportgen/xml_transform/xml_transform/help:', ...
matlabroot,'/toolbox/coder/coderapp/common/ml:', ...
matlabroot,'/toolbox/shared/comparisons:', ...
matlabroot,'/toolbox/shared/supportsoftware/launcher:', ...
matlabroot,'/toolbox/shared/supportsoftware/services:', ...
matlabroot,'/toolbox/shared/supportsoftware/upgrade:', ...
matlabroot,'/examples/parallel/data:', ...
matlabroot,'/toolbox/shared/imageslib:', ...
matlabroot,'/toolbox/shared/sl_coverage_configset:', ...
matlabroot,'/toolbox/targetframework/matlabwrapper:', ...
matlabroot,'/toolbox/shared/transportapp:', ...
matlabroot,'/toolbox/parallel/mpi/profilerviewer:', ...
matlabroot,'/toolbox/shared/rptgen:', ...
matlabroot,'/examples/stats/data:', ...
matlabroot,'/toolbox/shared/signalwavelet/signalwavelet:', ...
matlabroot,'/toolbox/nnet/cnn:', ...
matlabroot,'/toolbox/shared/cgxe/cgxe:', ...
matlabroot,'/toolbox/parallel/parallel:', ...
matlabroot,'/toolbox/parallel/parallel/util:', ...
matlabroot,'/toolbox/shared/multimedia:', ...
matlabroot,'/toolbox/stats/distributed:', ...
matlabroot,'/toolbox/nnet/cnn/spkgs:', ...
matlabroot,'/toolbox/shared/pegparserlib/pegparser:', ...
matlabroot,'/toolbox/bioinfo/bioinfodata:', ...
matlabroot,'/toolbox/shared/stateflow:', ...
matlabroot,'/toolbox/nnet/deepviz:', ...
matlabroot,'/toolbox/shared/dnnshared:', ...
matlabroot,'/toolbox/shared/io/general:', ...
matlabroot,'/toolbox/shared/mlarrow:', ...
matlabroot,'/toolbox/shared/asynciolib:', ...
matlabroot,'/toolbox/shared/imageio:', ...
matlabroot,'/toolbox/coder/targetreg:', ...
matlabroot,'/toolbox/signal/signal:', ...
matlabroot,'/toolbox/signal/sigtools:', ...
matlabroot,'/toolbox/signal/sptoolgui:', ...
matlabroot,'/examples/multibody_deeplearning/data:', ...
matlabroot,'/toolbox/rptgen/xmlcomp:', ...
matlabroot,'/toolbox/shared/measure:', ...
matlabroot,'/toolbox/shared/hwmanager/hwmanagerapp/scopes:', ...
matlabroot,'/toolbox/nnet/deep:', ...
matlabroot,'/toolbox/shared/dastudio:', ...
matlabroot,'/toolbox/shared/mlearnlib:', ...
matlabroot,'/toolbox/coder/foundation:', ...
matlabroot,'/toolbox/coder/foundation/build/tools/registry:', ...
matlabroot,'/toolbox/coder/foundation/tfl:', ...
matlabroot,'/toolbox/coder/foundation/tfl/AUTOSAR/AUTOSAR4p0/IFX:', ...
matlabroot,'/toolbox/coder/foundation/tfl/AUTOSAR/AUTOSAR4p0/IFL:', ...
matlabroot,'/toolbox/coder/foundation/tfl/gui:', ...
matlabroot,'/toolbox/coder/foundation/templates:', ...
matlabroot,'/toolbox/shared/simtargets:', ...
matlabroot,'/toolbox/coder/profile:', ...
matlabroot,'/toolbox/shared/hadoopserializer:', ...
matlabroot,'/toolbox/shared/sdi:', ...
matlabroot,'/examples/matlabmobile/data:', ...
matlabroot,'/toolbox/signal/signallabeler:', ...
matlabroot,'/toolbox/shared/signal_featureextraction/signalfeatureextraction:', ...
matlabroot,'/toolbox/coder/rtiostream:', ...
matlabroot,'/toolbox/images/deep:', ...
matlabroot,'/toolbox/diagram/layout/treelayout:', ...
matlabroot,'/toolbox/coder/trace:', ...
matlabroot,'/toolbox/da:', ...
matlabroot,'/toolbox/shared_dl_targets_src:', ...
matlabroot,'/toolbox/shared/dsp/filterdesignlib:', ...
matlabroot,'/toolbox/shared/dsp/filterdesignlib/filterbuilder:', ...
matlabroot,'/toolbox/parallel/array:', ...
matlabroot,'/toolbox/shared/spcuilib/unifiedscopes:', ...
%%% END ENTRIES %%%
...
];
if startsWith(computer, 'PC') % ispc and pathsep not available
separator = ';';
else
separator = ':';
end
p = [userpath separator getenv('MATLABPATH') separator p];