Skip to content

Commit c282d3d

Browse files
Merge pull request #29 from MATLAB-Community-Toolboxes-at-INCF/27-remove-the-pop-up-for-adding-the-cwd-to-the-path
Add setup function, add required folders to path
2 parents 101e951 + a2679a3 commit c282d3d

File tree

5 files changed

+8
-0
lines changed

5 files changed

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

examples/tiny_ephys_inference.mlx

-92 Bytes
Binary file not shown.

examples/tiny_ephys_training.mlx

-94.6 KB
Binary file not shown.

examples/tiny_ophys_inference.mlx

333 KB
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 base_folder = setup()
2+
% Add current directory and sample_data, layers and exmamples to path
3+
base_folder = fileparts(mfilename('fullpath'));
4+
addpath(base_folder);
5+
addpath(fullfile(base_folder, "network_layers"))
6+
addpath(fullfile(base_folder, "sample_data"))
7+
addpath(fullfile(base_folder, "examples"))
8+
end

0 commit comments

Comments
 (0)