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

Function dominant_flat_ninth

mingus/core/chords.py:395–404  ·  view source on GitHub ↗

Build a dominant flat ninth chord on note. Example: >>> dominant_flat_ninth('C') ['C', 'E', 'G', 'Bb', 'Db']

(note)

Source from the content-addressed store, hash-verified

393
394
395def dominant_flat_ninth(note):
396 """Build a dominant flat ninth chord on note.
397
398 Example:
399 >>> dominant_flat_ninth('C')
400 ['C', 'E', 'G', 'Bb', 'Db']
401 """
402 res = dominant_ninth(note)
403 res[4] = intervals.minor_second(note)
404 return res
405
406
407def dominant_sharp_ninth(note):

Callers

nothing calls this directly

Calls 1

dominant_ninthFunction · 0.85

Tested by

no test coverage detected