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

Function mediant

mingus/core/chords.py:603–610  ·  view source on GitHub ↗

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

(key)

Source from the content-addressed store, hash-verified

601
602
603def mediant(key):
604 """Return the mediant chord in key.
605
606 Example:
607 >>> mediant('C')
608 ['E', 'G', 'B']
609 """
610 return triads(key)[2]
611
612
613def mediant7(key):

Callers 2

iiiFunction · 0.85
IIIFunction · 0.85

Calls 1

triadsFunction · 0.85

Tested by

no test coverage detected