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

Function dominant_flat_five

mingus/core/chords.py:539–548  ·  view source on GitHub ↗

Build a dominant flat five chord on note. Example: >>> dominant_flat_five('C') ['C', 'E', 'Gb', 'Bb']

(note)

Source from the content-addressed store, hash-verified

537
538
539def dominant_flat_five(note):
540 """Build a dominant flat five chord on note.
541
542 Example:
543 >>> dominant_flat_five('C')
544 ['C', 'E', 'Gb', 'Bb']
545 """
546 res = dominant_seventh(note)
547 res[2] = notes.diminish(res[2])
548 return res
549
550
551def lydian_dominant_seventh(note):

Callers

nothing calls this directly

Calls 2

dominant_seventhFunction · 0.85
diminishMethod · 0.45

Tested by

no test coverage detected