construct.notes

abjad.tools.construct.notes(pitches, durations, direction='big-endian')

Constructs a list of prolated notes of length len(durations).

Parameters:

pitches
a single pitch or a list/tuple of pitches. If the list is smaller than that of the durations, the pitches are cycled through.
durations
a sinlge duration or a list of durations. The durations need not be of the form m / 2**n and may be any rational value.
direction
may be ‘big-endian’ or ‘little-endian’. ‘big-endian’ returns list of notes of decreasing duration. ‘little-endian’ returns list of notes of increasing duration.

Previous topic

construct.note_train

Next topic

construct.notes_curve

This Page