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

Function dominant

mingus/core/chords.py:633–640  ·  view source on GitHub ↗

Return the dominant chord in key. Example: >>> dominant('C') ['G', 'B', 'D']

(key)

Source from the content-addressed store, hash-verified

631
632
633def dominant(key):
634 """Return the dominant chord in key.
635
636 Example:
637 >>> dominant('C')
638 ['G', 'B', 'D']
639 """
640 return triads(key)[4]
641
642
643def dominant7(key):

Callers 1

VFunction · 0.85

Calls 1

triadsFunction · 0.85

Tested by

no test coverage detected