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

Function subtonic

mingus/core/chords.py:663–670  ·  view source on GitHub ↗

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

(key)

Source from the content-addressed store, hash-verified

661
662
663def subtonic(key):
664 """Return the subtonic chord in key.
665
666 Example:
667 >>> subtonic('C')
668 ['B', 'D', 'F']
669 """
670 return triads(key)[6]
671
672
673def subtonic7(key):

Callers 3

viiFunction · 0.85
VIIFunction · 0.85
vii7Function · 0.85

Calls 1

triadsFunction · 0.85

Tested by

no test coverage detected