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

Function dominant_ninth

mingus/core/chords.py:385–392  ·  view source on GitHub ↗

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

(note)

Source from the content-addressed store, hash-verified

383
384
385def dominant_ninth(note):
386 """Build a dominant ninth chord on note.
387
388 Example:
389 >>> dominant_ninth('C')
390 ['C', 'E', 'G', 'Bb', 'D']
391 """
392 return dominant_seventh(note) + [intervals.major_second(note)]
393
394
395def dominant_flat_ninth(note):

Callers 3

dominant_flat_ninthFunction · 0.85
dominant_sharp_ninthFunction · 0.85
dominant_thirteenthFunction · 0.85

Calls 1

dominant_seventhFunction · 0.85

Tested by

no test coverage detected