Mercurial > hg > camir-ismir2012
comparison editme_startup.m @ 0:cc4b1211e677 tip
initial commit to HG from
Changeset:
646 (e263d8a21543) added further path and more save "camirversion.m"
author | Daniel Wolff |
---|---|
date | Fri, 19 Aug 2016 13:07:06 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:cc4b1211e677 |
---|---|
1 % --- | |
2 % startup.m local | |
3 % this is the place to set system-specific parameters and paths | |
4 % --- | |
5 | |
6 global globalvars; | |
7 | |
8 % --- | |
9 % @TODO: PLEASE insert your absolute path to the folder containing this | |
10 % script | |
11 % --- | |
12 my_path = 'C:\_danielwolff\_documents\coding\matlab\music_research_branches\ISMIR2012'; | |
13 | |
14 % --- | |
15 % Add Toolboxes | |
16 % --- | |
17 addpath(my_path); | |
18 | |
19 addpath(genpath([my_path '/toolboxes/bioakustik_tools'])) | |
20 addpath(genpath([my_path '/toolboxes/graph_visualisation/graphViz4Matlab/util'])) | |
21 | |
22 addpath(pathsdiff(genpath([my_path]),... | |
23 '.svn')); | |
24 | |
25 % smv-light | |
26 addtosystempath([my_path '/toolboxes/SVM-light']); | |
27 | |
28 | |
29 globalvars.tstaudiopath = [my_path '/features']; | |
30 globalvars.mfilepath = ''; | |
31 globalvars.tstoutputpath = [my_path '/features']; | |
32 globalvars.systemslash = filesep; | |
33 | |
34 cd ('core'); | |
35 startup_music_research; |