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

Function hendrix_chord

mingus/core/chords.py:561–568  ·  view source on GitHub ↗

Build the famous Hendrix chord (7b12). Example: >>> hendrix_chord('C') ['C', 'E', 'G', 'Bb', 'Eb']

(note)

Source from the content-addressed store, hash-verified

559
560
561def hendrix_chord(note):
562 """Build the famous Hendrix chord (7b12).
563
564 Example:
565 >>> hendrix_chord('C')
566 ['C', 'E', 'G', 'Bb', 'Eb']
567 """
568 return dominant_seventh(note) + [intervals.minor_third(note)]
569
570
571def tonic(key):

Callers

nothing calls this directly

Calls 1

dominant_seventhFunction · 0.85

Tested by

no test coverage detected