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

Function sixth_ninth

mingus/core/chords.py:355–362  ·  view source on GitHub ↗

Build the sixth/ninth chord on note. Example: >>> sixth_ninth('C') ['C', 'E', 'G', 'A', 'D']

(note)

Source from the content-addressed store, hash-verified

353
354
355def sixth_ninth(note):
356 """Build the sixth/ninth chord on note.
357
358 Example:
359 >>> sixth_ninth('C')
360 ['C', 'E', 'G', 'A', 'D']
361 """
362 return major_sixth(note) + [intervals.major_second(note)]
363
364
365def minor_ninth(note):

Callers

nothing calls this directly

Calls 1

major_sixthFunction · 0.70

Tested by

no test coverage detected