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

Function submediant

mingus/core/chords.py:648–655  ·  view source on GitHub ↗

Return the submediant chord in key. Example: >>> submediant('C') ['A', 'C', 'E']

(key)

Source from the content-addressed store, hash-verified

646
647
648def submediant(key):
649 """Return the submediant chord in key.
650
651 Example:
652 >>> submediant('C')
653 ['A', 'C', 'E']
654 """
655 return triads(key)[5]
656
657
658def submediant7(key):

Callers 2

viFunction · 0.85
VIFunction · 0.85

Calls 1

triadsFunction · 0.85

Tested by

no test coverage detected