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

Function major_sixth

mingus/core/chords.py:335–342  ·  view source on GitHub ↗

Build a major sixth chord on note. Example: >>> major_sixth('C') ['C', 'E', 'G', 'A']

(note)

Source from the content-addressed store, hash-verified

333
334
335def major_sixth(note):
336 """Build a major sixth chord on note.
337
338 Example:
339 >>> major_sixth('C')
340 ['C', 'E', 'G', 'A']
341 """
342 return major_triad(note) + [intervals.major_sixth(note)]
343
344
345def dominant_sixth(note):

Callers 2

dominant_sixthFunction · 0.70
sixth_ninthFunction · 0.70

Calls 1

major_triadFunction · 0.85

Tested by

no test coverage detected