Exemple #1
0
def suspended_fourth_ninth(note):
    """Build a suspended fourth flat ninth chord on note.

    Example:
    >>> suspended_fourth_ninth('C')
    ['C', 'F', 'G', 'Db']
    """
    return suspended_fourth_triad(note) + [intervals.minor_second(note)]
Exemple #2
0
def suspended_fourth_ninth(note):
    """Build a suspended fourth flat ninth chord on note.

    Example:
    >>> suspended_fourth_ninth('C')
    ['C', 'F', 'G', 'Db']
    """
    return suspended_fourth_triad(note) + [intervals.minor_second(note)]
Exemple #3
0
def dominant_flat_ninth(note):
    """Build a dominant flat ninth chord on note.

    Example:
    >>> dominant_ninth('C')
    ['C', 'E', 'G', 'Bb', 'Db']
    """
    res = dominant_ninth(note)
    res[4] = intervals.minor_second(note)
    return res
Exemple #4
0
def dominant_flat_ninth(note):
    """Build a dominant flat ninth chord on note.

    Example:
    >>> dominant_ninth('C')
    ['C', 'E', 'G', 'Bb', 'Db']
    """
    res = dominant_ninth(note)
    res[4] = intervals.minor_second(note)
    return res