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

Function major_ninth

mingus/core/chords.py:375–382  ·  view source on GitHub ↗

Build a major ninth chord on note. Example: >>> major_ninth('C') ['C', 'E', 'G', 'B', 'D']

(note)

Source from the content-addressed store, hash-verified

373
374
375def major_ninth(note):
376 """Build a major ninth chord on note.
377
378 Example:
379 >>> major_ninth('C')
380 ['C', 'E', 'G', 'B', 'D']
381 """
382 return major_seventh(note) + [intervals.major_second(note)]
383
384
385def dominant_ninth(note):

Callers 1

major_thirteenthFunction · 0.85

Calls 1

major_seventhFunction · 0.70

Tested by

no test coverage detected