matthiasm@7
|
1 # comma-separated chord dictionary
|
matthiasm@7
|
2 #
|
matthiasm@7
|
3 # field 1 is chord type name,
|
matthiasm@7
|
4 # fields 2-25 indicate whether a pitch class is present (1) or not (0) :
|
matthiasm@7
|
5 # - fields 2-13 correspond to bass pitch classes A through Ab
|
matthiasm@7
|
6 # - fields 14-25 correspond to chord pitch classes A through Ab
|
matthiasm@7
|
7
|
matthiasm@7
|
8 :1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0
|
matthiasm@7
|
9 m:1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0
|
matthiasm@7
|
10 6:1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0
|
matthiasm@7
|
11 7:1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0
|
matthiasm@7
|
12 maj7:1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1
|
matthiasm@7
|
13 min7:1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0
|
matthiasm@7
|
14 :0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0
|
matthiasm@7
|
15 :0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0
|
matthiasm@7
|
16 dim:1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0
|
matthiasm@7
|
17 aug:1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 |