Skip to content

Commit 4cdf9fb

Browse files
committed
Add setup function, add required folders to path
1 parent ae60cc5 commit 4cdf9fb

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-0
lines changed
-54 Bytes
Binary file not shown.

examples/tiny_ephys_inference.mlx

-95 Bytes
Binary file not shown.

examples/tiny_ephys_training.mlx

-94.6 KB
Binary file not shown.

examples/tiny_ophys_inference.mlx

-54 Bytes
Binary file not shown.

setup.m

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
function setup()
2+
% Add current directory and sample_data, layers and exmamples to path
3+
setup_path = fileparts(mfilename('fullpath'));
4+
addpath(setup_path);
5+
addpath(fullfile(setup_path, "network_layers"))
6+
addpath(fullfile(setup_path, "sample_data"))
7+
addpath(fullfile(setup_path, "examples"))
8+
end

0 commit comments

Comments
 (0)