Mercurial > hg > camir-ismir2012
annotate 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 |
rev | line source |
---|---|
Daniel@0 | 1 % --- |
Daniel@0 | 2 % startup.m local |
Daniel@0 | 3 % this is the place to set system-specific parameters and paths |
Daniel@0 | 4 % --- |
Daniel@0 | 5 |
Daniel@0 | 6 global globalvars; |
Daniel@0 | 7 |
Daniel@0 | 8 % --- |
Daniel@0 | 9 % @TODO: PLEASE insert your absolute path to the folder containing this |
Daniel@0 | 10 % script |
Daniel@0 | 11 % --- |
Daniel@0 | 12 my_path = 'C:\_danielwolff\_documents\coding\matlab\music_research_branches\ISMIR2012'; |
Daniel@0 | 13 |
Daniel@0 | 14 % --- |
Daniel@0 | 15 % Add Toolboxes |
Daniel@0 | 16 % --- |
Daniel@0 | 17 addpath(my_path); |
Daniel@0 | 18 |
Daniel@0 | 19 addpath(genpath([my_path '/toolboxes/bioakustik_tools'])) |
Daniel@0 | 20 addpath(genpath([my_path '/toolboxes/graph_visualisation/graphViz4Matlab/util'])) |
Daniel@0 | 21 |
Daniel@0 | 22 addpath(pathsdiff(genpath([my_path]),... |
Daniel@0 | 23 '.svn')); |
Daniel@0 | 24 |
Daniel@0 | 25 % smv-light |
Daniel@0 | 26 addtosystempath([my_path '/toolboxes/SVM-light']); |
Daniel@0 | 27 |
Daniel@0 | 28 |
Daniel@0 | 29 globalvars.tstaudiopath = [my_path '/features']; |
Daniel@0 | 30 globalvars.mfilepath = ''; |
Daniel@0 | 31 globalvars.tstoutputpath = [my_path '/features']; |
Daniel@0 | 32 globalvars.systemslash = filesep; |
Daniel@0 | 33 |
Daniel@0 | 34 cd ('core'); |
Daniel@0 | 35 startup_music_research; |