MCPcopy Create free account
hub / github.com/bspaans/python-mingus / dominant_thirteenth

Function dominant_thirteenth

mingus/core/chords.py:464–471  ·  view source on GitHub ↗

Build a dominant thirteenth chord on note. Example: >>> dominant_thirteenth('C') ['C', 'E', 'G', 'Bb', 'D', 'A']

(note)

Source from the content-addressed store, hash-verified

462
463
464def 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
474def suspended_triad(note):

Callers

nothing calls this directly

Calls 1

dominant_ninthFunction · 0.85

Tested by

no test coverage detected