Build a dominant thirteenth chord on note. Example: >>> dominant_thirteenth('C') ['C', 'E', 'G', 'Bb', 'D', 'A']
(note)
| 462 | |
| 463 | |
| 464 | def dominant_thirteenth(note): |
| 465 | """Build a dominant thirteenth chord on note. |
| 466 | |
| 467 | Example: |
| 468 | >>> dominant_thirteenth('C') |
| 469 | ['C', 'E', 'G', 'Bb', 'D', 'A'] |
| 470 | """ |
| 471 | return dominant_ninth(note) + [intervals.major_sixth(note)] |
| 472 | |
| 473 | |
| 474 | def suspended_triad(note): |
nothing calls this directly
no test coverage detected