Build a major ninth chord on note. Example: >>> major_ninth('C') ['C', 'E', 'G', 'B', 'D']
(note)
| 373 | |
| 374 | |
| 375 | def major_ninth(note): |
| 376 | """Build a major ninth chord on note. |
| 377 | |
| 378 | Example: |
| 379 | >>> major_ninth('C') |
| 380 | ['C', 'E', 'G', 'B', 'D'] |
| 381 | """ |
| 382 | return major_seventh(note) + [intervals.major_second(note)] |
| 383 | |
| 384 | |
| 385 | def dominant_ninth(note): |
no test coverage detected