-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME.txt
60 lines (47 loc) · 1.63 KB
/
README.txt
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
Welcome to Tom's shared code repository!
You can either manually add the 'matlab' subdirectory and all children to
your matlab path using the 'Path' menu, or you can add the following lines to
your matlab startup file (e.g. ~/.matlab/startup.m). (Be sure to replace
'/path/to/thisdir' with the path to your checked-out copy of this
code.)
% Add Tom's shared Matlab code directories to Matlab's path
cd /path/to/thisdir/matlab
path(td_sharedcode_pathdef,path);
*** Directories
matlab/
|-nlx-import
| Code to import Neuralynx Cheetah data files into matlab structures
|
|-mwl-import
| Code for importing Wilson Lab (MIT) data
|
|-import/
| Code to import Wilson Lab experimental data into matlab structures.
|
|-util/
| General-purpose utilities
|
|-cont/
| Library of signal processing code (cdats, etc).
|
|-tdt/
| Code to control TDT OpenEx from Matlab, and to import TDT data.
|
|-photometry/
| Code to process recorded fiber photometry data (relies on signal
| processing lib in 'cont')
*** Dependencies:
-I am currently running Matlab R2015a, and I don't try to maintain
backwards compatibility, so no guarantees about supporting older versions.
(That said, code that I haven't run in a while may not be updated to work
on latest Matlab!)
-Matlab toolboxes:
Filter Design Toolbox
Image Processing Toolbox
Signal Processing Toolbox
Statistics Toolbox
-mwl-import code requires Fabian Kloosterman's mwlIO library for reading and creating
AD-style data files. (known to work with version in SVN repo as of Aug. 2009)
Any questions, or if you'd like to check in bug fixes/improvements, email
me at [email protected] .
Tom