-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpathdef.m
3151 lines (3145 loc) · 198 KB
/
pathdef.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
function p = pathdef
%PATHDEF Search path defaults.
% PATHDEF returns a string that can be used as input to MATLABPATH
% in order to set the path.
% Copyright 1984-2022 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 %%%
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/branches:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/hooks:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/info:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/logs:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/logs/refs:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/logs/refs/heads:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/logs/refs/remotes:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/logs/refs/remotes/origin:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/00:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/01:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/02:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/03:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/04:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/05:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/06:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/07:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/08:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/09:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/0a:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/0b:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/0c:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/0d:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/0e:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/0f:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/10:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/11:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/12:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/13:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/14:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/15:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/16:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/17:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/18:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/19:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/1a:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/1b:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/1c:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/1d:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/1e:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/1f:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/20:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/21:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/22:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/23:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/24:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/25:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/26:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/27:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/28:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/29:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/2a:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/2b:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/2c:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/2d:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/2e:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/2f:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/30:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/31:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/32:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/33:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/34:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/35:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/36:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/37:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/38:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/39:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/3a:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/3b:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/3c:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/3d:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/3e:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/3f:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/40:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/41:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/42:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/43:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/44:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/45:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/46:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/47:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/48:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/49:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/4a:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/4b:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/4c:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/4d:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/4e:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/4f:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/50:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/51:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/52:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/53:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/54:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/55:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/56:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/57:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/58:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/59:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/5a:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/5b:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/5c:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/5d:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/5e:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/5f:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/60:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/61:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/62:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/63:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/64:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/65:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/66:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/67:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/68:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/69:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/6a:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/6b:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/6c:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/6d:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/6e:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/6f:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/70:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/71:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/72:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/73:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/74:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/75:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/76:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/77:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/78:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/79:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/7a:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/7b:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/7c:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/7d:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/7e:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/7f:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/80:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/81:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/82:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/83:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/84:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/85:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/86:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/87:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/88:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/89:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/8a:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/8b:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/8c:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/8d:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/8e:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/8f:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/90:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/91:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/92:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/93:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/94:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/95:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/96:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/97:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/98:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/99:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/9a:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/9b:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/9c:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/9d:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/9e:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/9f:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/a0:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/a1:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/a2:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/a3:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/a4:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/a5:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/a6:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/a7:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/a8:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/a9:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/aa:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ab:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ac:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ad:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ae:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/af:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/b0:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/b1:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/b2:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/b3:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/b4:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/b5:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/b6:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/b7:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/b8:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/b9:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ba:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/bb:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/bc:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/bd:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/be:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/bf:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/c0:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/c1:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/c2:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/c3:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/c4:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/c5:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/c6:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/c7:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/c8:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/c9:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ca:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/cb:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/cc:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/cd:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ce:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/cf:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/d0:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/d1:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/d2:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/d3:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/d4:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/d5:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/d6:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/d7:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/d8:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/d9:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/da:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/db:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/dc:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/dd:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/de:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/df:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/e0:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/e1:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/e2:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/e3:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/e4:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/e5:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/e6:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/e7:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/e8:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/e9:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ea:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/eb:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ec:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ed:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ee:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ef:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/f0:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/f1:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/f2:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/f3:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/f4:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/f5:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/f6:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/f7:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/f8:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/f9:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/fa:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/fb:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/fc:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/fd:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/fe:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/ff:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/info:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/objects/pack:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/refs:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/refs/heads:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/refs/remotes:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/refs/remotes/origin:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.git/refs/tags:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/.ipynb_checkpoints:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Receivers_controls:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Senders_controls:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Theta_modulators:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Theta_modulators/Control-Sender and Control-Receiver coherence - modulator brain area:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Theta_modulators/Control-Sender and Control-Receiver coherence - other brain areas:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Theta_modulators/Functions:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Theta_modulators/Modulator-Sender and Modulator-Receiver coherence:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Theta_modulators/Permutation test coherence difference:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Theta_modulators/Permutation test for Control-Rec and Control-Send coherence - Modulator Areas:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Theta_modulators/Permutation test for Control-Rec and Control-Send coherence - Other Areas:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Theta_modulators/Permutation test for Mod-Rec and Mod-Send coherence:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Theta_modulators/grand coherence:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_Theta_modulators/grand coherence/Average coherence same and other brain areas for specific sessions:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_high_low_theta_power:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_high_low_theta_power/Modulator-Sender (-Receiver) coherence for high and low power trials:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_high_low_theta_power/Modulator-Sender (-Receiver) z-scored coherence:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_high_low_theta_power/Plot time series for low and high theta power:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_high_low_theta_power/SR coherence permutation test for high - low power trials:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_high_low_theta_power/SR coherence permutation test for high - low power trials/SR coherence difference permutation test:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_high_low_theta_power/Sender- (Receiver-) Control coherence for high and low power trials:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_high_low_theta_power/Sender-Receiver coherence for high low theta power trials:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_high_low_theta_power/Sender-Receiver coherence for high low theta power trials/v1 - outliers excluded in MRS:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_high_low_theta_power/coherence phase distribution:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/Coherence_high_low_theta_power/functions:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/coherence/old_ones:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/find_modulators:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/granger_causality:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/multiple_comparison:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/plotting:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/plotting/functions:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/plotting/modulator-modulator network:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/plotting/plot_average_coherence:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/plotting/plot_coherence_across_monkeys:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/plotting/plot_sender_receiver_coherence:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/plotting/plot_single_examples:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/plotting/plot_varying_modulator_ranking:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/screen_and_split_data:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/structure_data_info_creation:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/Resting_State_codes/theta_beta_co-occurrence:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/STIM_codes:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/STIM_codes/coherence_modulators_and_controls:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/STIM_codes/create_data_structures:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/STIM_codes/find_modulators:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/STIM_codes/functions:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/STIM_codes/high_low_theta_power:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/STIM_codes/mean_coherence_hits_and_misses:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/STIM_codes/plotting:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/STIM_codes/positive_and_negative_modulators:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/STIM_codes/random_projections_of_tapers:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/STIM_codes/theta-and-beta-co-occurence:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/clean_directories:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/other_codes:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/other_codes/.ipynb_checkpoints:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/CircularGraph:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/CircularGraph/html:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/Circular_stats:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/Circular_stats/examples:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/Codes_Dhamala:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/Codes_Dhamala/__MACOSX:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/Codes_Dhamala/__MACOSX/codes:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/Codes_Dhamala/codes:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/C:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/core:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/demo:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/deprecated:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/deprecated/experimental:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/deprecated/images:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/deprecated/utils:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/docs:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/docs/html:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/experimental:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/gc:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/gc/GCCA_compat:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/gc/subsample:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/maintainer:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/maintainer/mex:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/maintainer/mvgc_schema:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/mex:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/stats:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/utils:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/utils/control:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/utils/legacy:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/utils/legacy/randi:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/utils/legacy/rng:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/MVGC toolbox/utils/stats:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/SVG_export:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/SVG_export/example:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/SVG_export/example/output:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/SVG_export/src:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/colormap:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/colormap/html:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/C:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/core:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/demo:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/deprecated:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/deprecated/experimental:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/deprecated/images:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/deprecated/utils:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/docs:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/docs/html:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/experimental:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/gc:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/gc/GCCA_compat:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/gc/subsample:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/maintainer:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/maintainer/mex:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/maintainer/mvgc_schema:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/mex:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/stats:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/utils:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/utils/control:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/utils/legacy:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/utils/legacy/randi:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/utils/legacy/rng:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/multivariate_granger_causality/utils/stats:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/shadedErrorBar-master:', ...
'/vol/bd5/People/Gino/Coherence_modulator_analysis/Gino_codes/toolbox/shadedErrorBar-master/exampleImages:', ...
'/mnt/raid/analyze:', ...
'/mnt/raid/analyze/add:', ...
'/mnt/raid/analyze/analyze:', ...
'/mnt/raid/analyze/benchmarks:', ...
'/mnt/raid/analyze/bs:', ...
'/mnt/raid/analyze/bs/get:', ...
'/mnt/raid/analyze/calc:', ...
'/mnt/raid/analyze/choice:', ...
'/mnt/raid/analyze/create:', ...
'/mnt/raid/analyze/day:', ...
'/mnt/raid/analyze/db:', ...
'/mnt/raid/analyze/del:', ...
'/mnt/raid/analyze/drive:', ...
'/mnt/raid/analyze/drmap:', ...
'/mnt/raid/analyze/drmap/daqmap_map_defns:', ...
'/mnt/raid/analyze/drmap/drmap_example_hardware_defn:', ...
'/mnt/raid/analyze/drmap/drmap_layout_defns:', ...
'/mnt/raid/analyze/drmap/drmap_map_defns:', ...
'/mnt/raid/analyze/drmap/intan:', ...
'/mnt/raid/analyze/drmap/microdrive_defns:', ...
'/mnt/raid/analyze/drmap/visualization:', ...
'/mnt/raid/analyze/elvis:', ...
'/mnt/raid/analyze/etest:', ...
'/mnt/raid/analyze/etest/channelMappings:', ...
'/mnt/raid/analyze/etest/exampleDefFiles:', ...
'/mnt/raid/analyze/etest/plot:', ...
'/mnt/raid/analyze/exp:', ...
'/mnt/raid/analyze/experiment_defn_files:', ...
'/mnt/raid/analyze/experiment_defn_files/Archie_RecStim_vSUBNETS220_2nd_NSpike_Rig3_256_256_amyGUI:', ...
'/mnt/raid/analyze/export:', ...
'/mnt/raid/analyze/extract:', ...
'/mnt/raid/analyze/fix:', ...
'/mnt/raid/analyze/for:', ...
'/mnt/raid/analyze/get:', ...
'/mnt/raid/analyze/imaging:', ...
'/mnt/raid/analyze/imaging/image_processing:', ...
'/mnt/raid/analyze/imaging/matlab_rosbag:', ...
'/mnt/raid/analyze/imaging/matlab_rosbag/classes:', ...
'/mnt/raid/analyze/imaging/matlab_rosbag/example:', ...
'/mnt/raid/analyze/imaging/matlab_rosbag/test:', ...
'/mnt/raid/analyze/imaging/preprocessing:', ...
'/mnt/raid/analyze/imaging/stitching:', ...
'/mnt/raid/analyze/imaging/tiff_tools:', ...
'/mnt/raid/analyze/imaging/util:', ...
'/mnt/raid/analyze/increment:', ...
'/mnt/raid/analyze/is:', ...
'/mnt/raid/analyze/load:', ...
'/mnt/raid/analyze/make:', ...
'/mnt/raid/analyze/misc:', ...
'/mnt/raid/analyze/models:', ...
'/mnt/raid/analyze/models/AccLLR:', ...
'/mnt/raid/analyze/models/AccLLR/calc:', ...
'/mnt/raid/analyze/models/AccLLR/calc/loo:', ...
'/mnt/raid/analyze/models/AccLLR/defn:', ...
'/mnt/raid/analyze/models/AccLLR/lik:', ...
'/mnt/raid/analyze/models/AccLLR/load:', ...
'/mnt/raid/analyze/models/AccLLR/misc:', ...
'/mnt/raid/analyze/models/AccLLR/plot:', ...
'/mnt/raid/analyze/models/AccLLR/print:', ...
'/mnt/raid/analyze/models/AccLLR/save:', ...
'/mnt/raid/analyze/models/MazzoniWitt:', ...
'/mnt/raid/analyze/models/MazzoniWitt/.ipynb_checkpoints:', ...
'/mnt/raid/analyze/models/MazzoniWitt/matlab:', ...
'/mnt/raid/analyze/models/glm:', ...
'/mnt/raid/analyze/models/graphical:', ...
'/mnt/raid/analyze/models/graphical/GMM:', ...
'/mnt/raid/analyze/models/graphical/HMM:', ...
'/mnt/raid/analyze/models/graphical/SKF:', ...
'/mnt/raid/analyze/models/graphical/SKF/demos:', ...
'/mnt/raid/analyze/models/graphical/SKF/demos/neural_demo:', ...
'/mnt/raid/analyze/models/graphical/SKF/demos/single_kf_demo:', ...
'/mnt/raid/analyze/models/graphical/SKF/demos/sri_demo:', ...
'/mnt/raid/analyze/models/graphical/SKF/gpb2:', ...
'/mnt/raid/analyze/models/graphical/SKF/util:', ...
'/mnt/raid/analyze/models/graphical/tools:', ...
'/mnt/raid/analyze/monkeys:', ...
'/mnt/raid/analyze/mri:', ...
'/mnt/raid/analyze/mri/NIfTImatlab:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/autom4te.cache:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/doc:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/examples:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/include:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/matlab:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/nifticlib:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/nifticlib/bin:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/nifticlib/include:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/nifticlib/niftilib:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/nifticlib/utils:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/nifticlib/znzlib:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/otherMatlab:', ...
'/mnt/raid/analyze/mri/NIfTImatlab/src:', ...
'/mnt/raid/analyze/mri/ofMRI:', ...
'/mnt/raid/analyze/mri/src:', ...
'/mnt/raid/analyze/nanoz:', ...
'/mnt/raid/analyze/night:', ...
'/mnt/raid/analyze/notBag:', ...
'/mnt/raid/analyze/panel:', ...
'/mnt/raid/analyze/panel/calc:', ...
'/mnt/raid/analyze/panel/create:', ...
'/mnt/raid/analyze/panel/defn:', ...
'/mnt/raid/analyze/panel/defn/helper:', ...
'/mnt/raid/analyze/panel/draw:', ...
'/mnt/raid/analyze/panel/get:', ...
'/mnt/raid/analyze/panel/load:', ...
'/mnt/raid/analyze/panel/plot:', ...
'/mnt/raid/analyze/panel/print:', ...
'/mnt/raid/analyze/panel/save:', ...
'/mnt/raid/analyze/panel/sess:', ...
'/mnt/raid/analyze/panel/set:', ...
'/mnt/raid/analyze/papers:', ...
'/mnt/raid/analyze/papers/Phase-dependent_choice:', ...
'/mnt/raid/analyze/papers/Phase-dependent_choice/code:', ...
'/mnt/raid/analyze/papers/Phase-dependent_choice/revision:', ...
'/mnt/raid/analyze/papers/ShanechiLab:', ...
'/mnt/raid/analyze/papers/ShanechiLab/repeatedBN:', ...
'/mnt/raid/analyze/papers/ShanechiLab/repeatedBN/subfunctions:', ...
'/mnt/raid/analyze/plot:', ...
'/mnt/raid/analyze/post_processing:', ...
'/mnt/raid/analyze/post_processing/denoise:', ...
'/mnt/raid/analyze/post_processing/lfpdatabase:', ...
'/mnt/raid/analyze/post_processing/mocap:', ...
'/mnt/raid/analyze/post_processing/mocap/which:', ...
'/mnt/raid/analyze/post_processing/spikesort:', ...
'/mnt/raid/analyze/post_processing/spikesort/Clustering:', ...
'/mnt/raid/analyze/post_processing/wave_clus:', ...
'/mnt/raid/analyze/proc:', ...
'/mnt/raid/analyze/proc/LabView:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v2.10:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v2.2:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v2.3:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v2.5:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v2.6:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v2.7:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v2.8:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.00:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.01:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.02:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.03:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.04:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.05:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.07:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.08:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.10:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.11:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.12:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.13:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.14:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.15:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.16:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.17:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.18:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v3.19:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.00:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.01:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.02:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.03:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.04:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.05:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.06:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.07:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.08:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.09:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.10:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.11:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v4.11 OLD:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.00:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.01:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.02:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.03:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.04:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.05:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.06:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.07:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.08:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.09:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.10:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.11:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.12:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.13:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.14:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.15:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.16:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.17:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.18:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.19:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.20:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.21:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.22:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.23:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.24:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.25:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.26:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.27:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.28:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.29:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v5.31:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v6.0:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v6.1:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v6.2:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.0:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.1:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.11:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.12:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.13:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.14:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.15:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.16:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.20:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.21:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.22:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.23:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.25:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v7.26:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v8.00:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v8.01:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v8.02:', ...
'/mnt/raid/analyze/proc/LabView/Task Control v8.03:', ...
'/mnt/raid/analyze/proc/Psychtoolbox:', ...
'/mnt/raid/analyze/proc/Psychtoolbox/Psychtoolbox:', ...
'/mnt/raid/analyze/proc/PyTaskCtrl:', ...
'/mnt/raid/analyze/proc/PyTaskCtrl/v1:', ...
'/mnt/raid/analyze/proc/PyTaskCtrl/v3:', ...
'/mnt/raid/analyze/proc/PyTaskCtrl/v4:', ...
'/mnt/raid/analyze/proc/PyTaskCtrl/v5:', ...
'/mnt/raid/analyze/proc/PyTaskCtrl/v6:', ...
'/mnt/raid/analyze/proc/PyTaskCtrl/v7:', ...
'/mnt/raid/analyze/proc/Unity:', ...
'/mnt/raid/analyze/proc/Unity/TaskController_v1:', ...
'/mnt/raid/analyze/proc/preproc:', ...
'/mnt/raid/analyze/raw:', ...
'/mnt/raid/analyze/remove:', ...
'/mnt/raid/analyze/replace:', ...
'/mnt/raid/analyze/save:', ...
'/mnt/raid/analyze/sess:', ...
'/mnt/raid/analyze/sess/2p:', ...
'/mnt/raid/analyze/sess/mocap:', ...
'/mnt/raid/analyze/sess/sessPrintPSTHHelper:', ...
'/mnt/raid/analyze/sess/sleep:', ...
'/mnt/raid/analyze/set:', ...
'/mnt/raid/analyze/spont:', ...
'/mnt/raid/analyze/spont/plotScripts:', ...
'/mnt/raid/analyze/table:', ...
'/mnt/raid/analyze/table/add:', ...
'/mnt/raid/analyze/table/calc:', ...
'/mnt/raid/analyze/table/create:', ...
'/mnt/raid/analyze/table/defn:', ...
'/mnt/raid/analyze/table/get:', ...
'/mnt/raid/analyze/table/load:', ...
'/mnt/raid/analyze/table/misc:', ...
'/mnt/raid/analyze/table/save:', ...
'/mnt/raid/analyze/to:', ...
'/mnt/raid/analyze/toolboxes:', ...
'/mnt/raid/analyze/toolboxes/GUI Layout Toolbox 2.3.6:', ...
'/mnt/raid/analyze/toolboxes/GUI Layout Toolbox 2.3.6/layout:', ...
'/mnt/raid/analyze/toolboxes/GUI Layout Toolbox 2.3.6/layoutdoc:', ...
'/mnt/raid/analyze/toolboxes/GUI Layout Toolbox 2.3.6/layoutdoc/Examples:', ...
'/mnt/raid/analyze/toolboxes/GUI Layout Toolbox 2.3.6/layoutdoc/Images:', ...
'/mnt/raid/analyze/toolboxes/GUI Layout Toolbox 2.3.6/layoutdoc/helpsearch-v4_en:', ...
'/mnt/raid/analyze/toolboxes/GUI Layout Toolbox 2.3.6/layoutdoc/helpsearch-v4_en/store:', ...
'/mnt/raid/analyze/toolboxes/L1General:', ...
'/mnt/raid/analyze/toolboxes/L1General/KPM:', ...
'/mnt/raid/analyze/toolboxes/L1General/L1General:', ...
'/mnt/raid/analyze/toolboxes/L1General/L1General/sub:', ...
'/mnt/raid/analyze/toolboxes/L1General/L1General2:', ...
'/mnt/raid/analyze/toolboxes/L1General/lossFuncs:', ...
'/mnt/raid/analyze/toolboxes/L1General/minFunc:', ...
'/mnt/raid/analyze/toolboxes/L1General/misc:', ...
'/mnt/raid/analyze/toolboxes/MovieSlider:', ...
'/mnt/raid/analyze/toolboxes/OASIS:', ...
'/mnt/raid/analyze/toolboxes/OASIS/examples:', ...
'/mnt/raid/analyze/toolboxes/OASIS/oasis:', ...
'/mnt/raid/analyze/toolboxes/OASIS/tests:', ...
'/mnt/raid/analyze/toolboxes/SpikeGLX_Datafile_Tools:', ...
'/mnt/raid/analyze/toolboxes/SpikeGLX_Datafile_Tools/MATLAB:', ...
'/mnt/raid/analyze/toolboxes/SpikeGLX_Datafile_Tools/Python:', ...
'/mnt/raid/analyze/toolboxes/SpikeGLX_Datafile_Tools/Python/DemoReadSGLXData:', ...
'/mnt/raid/analyze/toolboxes/Suite2P:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/SpikeDetection:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/cellDetection:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/configFiles:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/configFiles/others:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/configFiles/priors:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/correctZDrift:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/cortexLab:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/gui2P:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/neuropilCorrection:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/preRegistration:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/readWrite:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/redChannel:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/registers2p:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/registration:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/registration/old:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/registration/old/nonRigidRegistration:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/signalExtraction:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/svd:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/tiffTools:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/utils:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/utils/EllipseDirectFit:', ...
'/mnt/raid/analyze/toolboxes/Suite2P/utils/sort_nat:', ...
'/mnt/raid/analyze/toolboxes/YAMLmatlab:', ...
'/mnt/raid/analyze/toolboxes/YAMLmatlab/Tests:', ...
'/mnt/raid/analyze/toolboxes/YAMLmatlab/Tests/Data:', ...
'/mnt/raid/analyze/toolboxes/YAMLmatlab/Tests/Data/test_import:', ...
'/mnt/raid/analyze/toolboxes/YAMLmatlab/Tests/Data/test_inheritance:', ...
'/mnt/raid/analyze/toolboxes/YAMLmatlab/Tests/Data/test_misc:', ...
'/mnt/raid/analyze/toolboxes/YAMLmatlab/Tests/Data/test_primitives:', ...
'/mnt/raid/analyze/toolboxes/YAMLmatlab/external:', ...
'/mnt/raid/analyze/toolboxes/YAMLmatlab/extras:', ...
'/mnt/raid/analyze/toolboxes/cbrewer:', ...
'/mnt/raid/analyze/toolboxes/circstat:', ...
'/mnt/raid/analyze/toolboxes/intan:', ...
'/mnt/raid/analyze/toolboxes/intan/RHD2000_MATLAB_functions_v2_01:', ...
'/mnt/raid/analyze/toolboxes/intan/RHS2000_MATLAB_functions_v1_0:', ...
'/mnt/raid/analyze/toolboxes/kalmanStackFilter:', ...
'/mnt/raid/analyze/toolboxes/l1ls:', ...
'/mnt/raid/analyze/toolboxes/minFunc_2012:', ...
'/mnt/raid/analyze/toolboxes/minFunc_2012/autoDif:', ...
'/mnt/raid/analyze/toolboxes/minFunc_2012/logisticExample:', ...
'/mnt/raid/analyze/toolboxes/minFunc_2012/minFunc:', ...
'/mnt/raid/analyze/toolboxes/minFunc_2012/minFunc/compiled:', ...
'/mnt/raid/analyze/toolboxes/minFunc_2012/minFunc/mex:', ...
'/mnt/raid/analyze/toolboxes/npy-matlab:', ...
'/mnt/raid/analyze/toolboxes/npy-matlab/examples:', ...
'/mnt/raid/analyze/toolboxes/npy-matlab/npy-matlab:', ...
'/mnt/raid/analyze/toolboxes/npy-matlab/tests:', ...
'/mnt/raid/analyze/toolboxes/npy-matlab/tests/data:', ...
'/mnt/raid/analyze/toolboxes/ompdecomp:', ...
'/mnt/raid/analyze/toolboxes/spectral:', ...
'/mnt/raid/analyze/toolboxes/spectral/Continuous:', ...
'/mnt/raid/analyze/toolboxes/spectral/Continuous/Bivariate:', ...
'/mnt/raid/analyze/toolboxes/spectral/Continuous/Bivariate/fix:', ...
'/mnt/raid/analyze/toolboxes/spectral/Continuous/Bivariate/test:', ...
'/mnt/raid/analyze/toolboxes/spectral/Continuous/Multivariate:', ...
'/mnt/raid/analyze/toolboxes/spectral/Continuous/Univariate:', ...
'/mnt/raid/analyze/toolboxes/spectral/Continuous/Univariate/fix:', ...
'/mnt/raid/analyze/toolboxes/spectral/Continuous/Univariate/test:', ...
'/mnt/raid/analyze/toolboxes/spectral/Hybrid:', ...
'/mnt/raid/analyze/toolboxes/spectral/Hybrid/Bivariate:', ...
'/mnt/raid/analyze/toolboxes/spectral/Point:', ...
'/mnt/raid/analyze/toolboxes/spectral/Point/Bivariate:', ...
'/mnt/raid/analyze/toolboxes/spectral/Point/Univariate:', ...
'/mnt/raid/analyze/toolboxes/spectral/Point/Univariate/fix:', ...
'/mnt/raid/analyze/toolboxes/spectral/misc:', ...
'/mnt/raid/analyze/toolboxes/spikes:', ...
'/mnt/raid/analyze/toolboxes/spikes/analysis:', ...
'/mnt/raid/analyze/toolboxes/spikes/analysis/helpers:', ...
'/mnt/raid/analyze/toolboxes/spikes/analysis/kernel:', ...
'/mnt/raid/analyze/toolboxes/spikes/preprocessing:', ...
'/mnt/raid/analyze/toolboxes/spikes/preprocessing/channel_maps:', ...
'/mnt/raid/analyze/toolboxes/spikes/preprocessing/helpers:', ...
'/mnt/raid/analyze/toolboxes/spikes/preprocessing/imecPhase3:', ...
'/mnt/raid/analyze/toolboxes/spikes/preprocessing/phyHelpers:', ...
'/mnt/raid/analyze/toolboxes/spikes/visualization:', ...
'/mnt/raid/analyze/toolboxes/spikes/visualization/helpers:', ...
'/mnt/raid/analyze/trial:', ...
'/mnt/raid/analyze/update:', ...
'/mnt/raid/analyze/utils:', ...
'/home/gino/matlab:', ...
matlabroot,'/toolbox/matlab/addon_enable_disable_management/matlab:', ...
matlabroot,'/toolbox/matlab/addon_updates/matlab:', ...
matlabroot,'/toolbox/matlab/addons:', ...
matlabroot,'/toolbox/matlab/addons/cef:', ...
matlabroot,'/toolbox/matlab/addons/fileexchange:', ...
matlabroot,'/toolbox/matlab/addons/supportpackages:', ...
matlabroot,'/toolbox/matlab/addons_common/matlab:', ...
matlabroot,'/toolbox/matlab/addons_desktop_registration:', ...
matlabroot,'/toolbox/matlab/addons_install_location/matlab:', ...
matlabroot,'/toolbox/matlab/addons_product:', ...
matlabroot,'/toolbox/matlab/addons_product_support/matlab:', ...
matlabroot,'/toolbox/matlab/addons_registry/matlab:', ...
matlabroot,'/toolbox/matlab/addons_sidepanel/matlab:', ...
matlabroot,'/toolbox/matlab/addressbar_plugins/browse_for_folder_button/matlab:', ...
matlabroot,'/toolbox/matlab/addressbar_plugins/cd_up_one_dir_button/matlab:', ...
matlabroot,'/toolbox/matlab/appcontainer:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner/interface:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner/runtime:', ...
matlabroot,'/toolbox/matlab/appdesigner/appdesigner_api:', ...
matlabroot,'/toolbox/matlab/appdesigner/comparisons/mldesktop_m:', ...
matlabroot,'/toolbox/matlab/appdesigner/matlab_integration/cfb/cfb:', ...
matlabroot,'/toolbox/matlab/apps:', ...
matlabroot,'/toolbox/matlab/audiovideo:', ...
matlabroot,'/toolbox/matlab/authnz/secretapis/builtins:', ...
matlabroot,'/toolbox/matlab/automation/core:', ...
matlabroot,'/toolbox/matlab/bigdata:', ...
matlabroot,'/toolbox/matlab/bluetooth:', ...
matlabroot,'/toolbox/matlab/buildtool/core:', ...
matlabroot,'/toolbox/matlab/buildtool/ext:', ...
matlabroot,'/toolbox/matlab/buildtool/parallel:', ...
matlabroot,'/toolbox/matlab/capabilities:', ...
matlabroot,'/toolbox/matlab/cefclient:', ...
matlabroot,'/toolbox/matlab/codeanalysis/analyzerrpt/backend:', ...
matlabroot,'/toolbox/matlab/codeanalysis/reports/analysis:', ...
matlabroot,'/toolbox/matlab/codeanalysis/tools:', ...
matlabroot,'/toolbox/matlab/codetools:', ...
matlabroot,'/toolbox/matlab/codetools/embeddedoutputs:', ...
matlabroot,'/toolbox/matlab/codetools/embeddedoutputs/DataToolsRegistration:', ...
matlabroot,'/toolbox/matlab/codetools/liveapps:', ...
matlabroot,'/toolbox/matlab/configtools:', ...
matlabroot,'/toolbox/matlab/connector2/binary:', ...
matlabroot,'/toolbox/matlab/connector2/common:', ...
matlabroot,'/toolbox/matlab/connector2/configuration:', ...
matlabroot,'/toolbox/matlab/connector2/connector:', ...
matlabroot,'/toolbox/matlab/connector2/editor:', ...
matlabroot,'/toolbox/matlab/connector2/figures:', ...
matlabroot,'/toolbox/matlab/connector2/http:', ...
matlabroot,'/toolbox/matlab/connector2/interpreter:', ...
matlabroot,'/toolbox/matlab/connector2/logger:', ...
matlabroot,'/toolbox/matlab/connector2/messageservice:', ...
matlabroot,'/toolbox/matlab/connector2/mgg:', ...
matlabroot,'/toolbox/matlab/connector2/nativebridge:', ...
matlabroot,'/toolbox/matlab/connector2/restmatlab:', ...
matlabroot,'/toolbox/matlab/connector2/session:', ...
matlabroot,'/toolbox/matlab/connector2/shadowfiles:', ...
matlabroot,'/toolbox/matlab/connector2/webwindow/m:', ...
matlabroot,'/toolbox/matlab/connector2/worker:', ...
matlabroot,'/toolbox/matlab/container/zip:', ...
matlabroot,'/toolbox/matlab/datafun:', ...
matlabroot,'/toolbox/matlab/datamanager:', ...
matlabroot,'/toolbox/matlab/datastoreio:', ...
matlabroot,'/toolbox/matlab/datatools/datatoolsservices/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/desktop_variableeditor/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/desktop_workspacebrowser/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/editorconverters/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/import_livetask:', ...
matlabroot,'/toolbox/matlab/datatools/importtool/matlab/peer:', ...
matlabroot,'/toolbox/matlab/datatools/importtool/matlab/server:', ...
matlabroot,'/toolbox/matlab/datatools/inspector/editors/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/inspector/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/inspector/registration:', ...
matlabroot,'/toolbox/matlab/datatools/matlab_integration/cfb/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/media_widgets/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/peermodel_mcos/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/plotstab/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/preprocessing:', ...
matlabroot,'/toolbox/matlab/datatools/uicomponents/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/variableeditor/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/widgets/matlab:', ...
matlabroot,'/toolbox/matlab/datatools/workspacebrowser/matlab:', ...
matlabroot,'/toolbox/matlab/datatypes:', ...
matlabroot,'/toolbox/matlab/datatypes/applyfuns:', ...
matlabroot,'/toolbox/matlab/datatypes/calendarDuration:', ...
matlabroot,'/toolbox/matlab/datatypes/categorical:', ...
matlabroot,'/toolbox/matlab/datatypes/cell:', ...
matlabroot,'/toolbox/matlab/datatypes/cell_nonlibmatlab:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/categorical:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/datetime:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/duration:', ...
matlabroot,'/toolbox/matlab/datatypes/codegen/tabular:', ...
matlabroot,'/toolbox/matlab/datatypes/datetime:', ...
matlabroot,'/toolbox/matlab/datatypes/datetime_nonlibmatlab:', ...
matlabroot,'/toolbox/matlab/datatypes/dictionary:', ...
matlabroot,'/toolbox/matlab/datatypes/duration:', ...
matlabroot,'/toolbox/matlab/datatypes/missing:', ...
matlabroot,'/toolbox/matlab/datatypes/shared/codegen:', ...
matlabroot,'/toolbox/matlab/datatypes/shared/matlab_datatypes:', ...
matlabroot,'/toolbox/matlab/datatypes/struct:', ...
matlabroot,'/toolbox/matlab/datatypes/tabular:', ...
matlabroot,'/toolbox/matlab/dataui:', ...
matlabroot,'/toolbox/matlab/ddux:', ...
matlabroot,'/toolbox/matlab/debugger:', ...
matlabroot,'/toolbox/matlab/demos:', ...
matlabroot,'/toolbox/matlab/dependency/analysis:', ...
matlabroot,'/toolbox/matlab/dependency/app:', ...
matlabroot,'/toolbox/matlab/dependency/attribute:', ...
matlabroot,'/toolbox/matlab/dependency/comparisons/mldesktop/matlab:', ...
matlabroot,'/toolbox/matlab/dependency/matlab:', ...
matlabroot,'/toolbox/matlab/dependency/refactoring:', ...
matlabroot,'/toolbox/matlab/dependency/report:', ...
matlabroot,'/toolbox/matlab/dependency/widget/progress:', ...
matlabroot,'/toolbox/matlab/dependency/widget/progress_web:', ...
matlabroot,'/toolbox/matlab/dependency/widget/window:', ...
matlabroot,'/toolbox/matlab/depfun:', ...
matlabroot,'/toolbox/matlab/deployment/compiler/mi/mi:', ...
matlabroot,'/toolbox/matlab/editor/cfb_integration/editor_actions/matlab:', ...
matlabroot,'/toolbox/matlab/editor/cfb_integration/editor_open_action/matlab:', ...
matlabroot,'/toolbox/matlab/editor/cfb_integration/matlabcode_filename_validation/matlab:', ...
matlabroot,'/toolbox/matlab/editor/cfb_integration/matlabcode_filepreview/matlab:', ...
matlabroot,'/toolbox/matlab/editor/cfb_integration/matlabcode_filetype_icons/matlab:', ...
matlabroot,'/toolbox/matlab/editor/cfb_integration/matlabcode_filetype_labels/matlab:', ...
matlabroot,'/toolbox/matlab/editor_addons/compare/matlab:', ...
matlabroot,'/toolbox/matlab/editor_addons/fixedpoint_data/matlab:', ...
matlabroot,'/toolbox/matlab/editor_addons/matlab_unit/matlab:', ...
matlabroot,'/toolbox/matlab/editor_addons/system_object/matlab:', ...
matlabroot,'/toolbox/matlab/elfun:', ...
matlabroot,'/toolbox/matlab/elmat:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/figureoutputs:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/outputs:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/outpututilities:', ...
matlabroot,'/toolbox/matlab/embeddedoutputs/variableoutputs:', ...
matlabroot,'/toolbox/matlab/external/engines/codegen/common:', ...
matlabroot,'/toolbox/matlab/external/engines/codegen/cpp:', ...
matlabroot,'/toolbox/matlab/external/engines/codegen/csharp:', ...
matlabroot,'/toolbox/matlab/external/engines/engine_api:', ...
matlabroot,'/toolbox/matlab/external/engines/rest:', ...
matlabroot,'/toolbox/matlab/external/interfaces/cpp:', ...
matlabroot,'/toolbox/matlab/external/interfaces/dotnet:', ...
matlabroot,'/toolbox/matlab/external/interfaces/java/jmi:', ...
matlabroot,'/toolbox/matlab/external/interfaces/json:', ...
matlabroot,'/toolbox/matlab/external/interfaces/python:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/http:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/restful:', ...
matlabroot,'/toolbox/matlab/external/interfaces/webservices/wsdl:', ...
matlabroot,'/toolbox/matlab/external/mex:', ...
matlabroot,'/toolbox/matlab/file_chooser/service/matlab:', ...
matlabroot,'/toolbox/matlab/filebrowser:', ...
matlabroot,'/toolbox/matlab/filesystem/default_filetype_plugins/file_icon_plugin:', ...
matlabroot,'/toolbox/matlab/filesystem/default_filetype_plugins/folder_icon_plugin:', ...
matlabroot,'/toolbox/matlab/filesystem/default_filetype_plugins/folder_label_plugin:', ...
matlabroot,'/toolbox/matlab/filesystem/default_filetype_plugins/folder_preview_plugin:', ...
matlabroot,'/toolbox/matlab/filesystem/matlab_filetype_filters/filetypefilters:', ...
matlabroot,'/toolbox/matlab/filesystem/services/matlab:', ...
matlabroot,'/toolbox/matlab/filesystem/ui/matlab:', ...
matlabroot,'/toolbox/matlab/findfiles/m:', ...
matlabroot,'/toolbox/matlab/funfun:', ...
matlabroot,'/toolbox/matlab/funfun/examples:', ...
matlabroot,'/toolbox/matlab/general:', ...
matlabroot,'/toolbox/matlab/git:', ...
matlabroot,'/toolbox/matlab/graph2d:', ...
matlabroot,'/toolbox/matlab/graph3d:', ...
matlabroot,'/toolbox/matlab/graphfun:', ...
matlabroot,'/toolbox/matlab/graphfun/codegen:', ...
matlabroot,'/toolbox/matlab/graphics:', ...
matlabroot,'/toolbox/matlab/graphics/annotation:', ...
matlabroot,'/toolbox/matlab/graphics/axis:', ...
matlabroot,'/toolbox/matlab/graphics/chart:', ...
matlabroot,'/toolbox/matlab/graphics/color:', ...
matlabroot,'/toolbox/matlab/graphics/function:', ...
matlabroot,'/toolbox/matlab/graphics/hg:', ...
matlabroot,'/toolbox/matlab/graphics/illustration:', ...
matlabroot,'/toolbox/matlab/graphics/legacy:', ...
matlabroot,'/toolbox/matlab/graphics/maps:', ...
matlabroot,'/toolbox/matlab/graphics/math:', ...
matlabroot,'/toolbox/matlab/graphics/objectsystem:', ...
matlabroot,'/toolbox/matlab/graphics/obsolete:', ...
matlabroot,'/toolbox/matlab/graphics/primitive:', ...
matlabroot,'/toolbox/matlab/graphics/printing:', ...
matlabroot,'/toolbox/matlab/guide:', ...
matlabroot,'/toolbox/matlab/hardware/shared/sensors:', ...
matlabroot,'/toolbox/matlab/hardware/stubs:', ...
matlabroot,'/toolbox/matlab/helptools:', ...
matlabroot,'/toolbox/matlab/helptools/help_static_content_deferred_services:', ...
matlabroot,'/toolbox/matlab/helptools_js/link_click_handling_docservice/m:', ...
matlabroot,'/toolbox/matlab/helptools_js/matlab_colon_docservice/m:', ...
matlabroot,'/toolbox/matlab/htmlviewer:', ...
matlabroot,'/toolbox/matlab/icons:', ...
matlabroot,'/toolbox/matlab/images:', ...
matlabroot,'/toolbox/matlab/imagesci:', ...
matlabroot,'/toolbox/matlab/imagesci_utils:', ...
matlabroot,'/toolbox/matlab/import_sci_livetasks:', ...
matlabroot,'/toolbox/matlab/indentcode/m:', ...
matlabroot,'/toolbox/matlab/indexing:', ...
matlabroot,'/toolbox/matlab/io/archive:', ...
matlabroot,'/toolbox/matlab/io/arrow:', ...
matlabroot,'/toolbox/matlab/io/common:', ...
matlabroot,'/toolbox/matlab/io/datastore/array:', ...
matlabroot,'/toolbox/matlab/io/datastore/common:', ...
matlabroot,'/toolbox/matlab/io/datastore/file:', ...
matlabroot,'/toolbox/matlab/io/datastore/fileset:', ...
matlabroot,'/toolbox/matlab/io/datastore/image:', ...
matlabroot,'/toolbox/matlab/io/datastore/keyvalue:', ...
matlabroot,'/toolbox/matlab/io/datastore/legacy:', ...
matlabroot,'/toolbox/matlab/io/datastore/parquet:', ...
matlabroot,'/toolbox/matlab/io/datastore/range:', ...
matlabroot,'/toolbox/matlab/io/datastore/spreadsheet:', ...
matlabroot,'/toolbox/matlab/io/datastore/tall:', ...
matlabroot,'/toolbox/matlab/io/datastore/text:', ...
matlabroot,'/toolbox/matlab/io/datastore/write:', ...
matlabroot,'/toolbox/matlab/io/filesystem:', ...
matlabroot,'/toolbox/matlab/io/filter:', ...
matlabroot,'/toolbox/matlab/io/ftp:', ...
matlabroot,'/toolbox/matlab/io/functions:', ...
matlabroot,'/toolbox/matlab/io/html:', ...
matlabroot,'/toolbox/matlab/io/interface:', ...
matlabroot,'/toolbox/matlab/io/json:', ...
matlabroot,'/toolbox/matlab/io/parquet:', ...
matlabroot,'/toolbox/matlab/io/spreadsheet:', ...
matlabroot,'/toolbox/matlab/io/struct:', ...
matlabroot,'/toolbox/matlab/io/text:', ...
matlabroot,'/toolbox/matlab/io/word:', ...
matlabroot,'/toolbox/matlab/io/xml:', ...
matlabroot,'/toolbox/matlab/iofun:', ...
matlabroot,'/toolbox/matlab/iot:', ...
matlabroot,'/toolbox/matlab/iot/connectivity:', ...
matlabroot,'/toolbox/matlab/keyboard_shortcuts:', ...
matlabroot,'/toolbox/matlab/lang:', ...
matlabroot,'/toolbox/matlab/licensing:', ...
matlabroot,'/toolbox/matlab/login/web/m:', ...