comparison evaluationtools/stripinversion.m @ 1:8973548174c1 tip

adding tools to repo
author christopherh
date Mon, 06 May 2013 14:43:47 +0100
parents
children
comparison
equal deleted inserted replaced
0:0a4ad3e72e75 1:8973548174c1
1
2 function chord = stripinversion(chordinput)
3
4 chord = '';
5
6 ilength = length(chordinput);
7
8 for i = 1:ilength
9
10 if chordinput(i)~='/'
11 chord = [chord chordinput(i)];
12 else
13 break;
14 end
15 end
16
17