Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions startup.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
% startup script to make Matlab aware of the ModeLAB package
% Time-stamp: <2022-06-23 18:32:37 averter>

disp(['executing ModeLAB startup script...']);

me = mfilename; % what is my filename
mydir = which(me); mydir = mydir(1:end-2-numel(me)); % where am I located

addpath(mydir(1:end-1))
addpath([mydir,'Peak fitting'])
addpath([mydir,'SignalCalc'])
addpath([mydir,'Utilities'])
addpath([mydir,'Example'])

clear me mydir