Closed float3 closed 8 months ago
I'm trying to generate LUT with all possible chords (enharmonically)
this is the LUT generated with the first code snippet
this is the second code snippet
one of my confusions, for example are:
"8": "E-",
"1024": "B-",
E Ab Cb: enharmonic equivalent to major triad above Cb E G# Cb: enharmonic equivalent to major triad above Cb I don't understand why the last two aren't the same as the second
This is because in those two examples, you've presumably omitted octaves. Cb is lower than E in the default octave, so the sonority really is "over Cb" where Cb is the bass, not the root.
You probably wanted:
c = chord.Chord('E4 Ab4 Cb5')
Or some variation.
If there's another issue you'd like to present, please annotate the two outputs with expected vs. actual results so that I'm not being asked to debug a script. Thanks.
music21 version
9.2.0b
Problem summary using
Chord.pitchedCommonName
E G# B: E-major triad E Ab B: enharmonic equivalent to major triad above E E Ab Cb: enharmonic equivalent to major triad above Cb E G# Cb: enharmonic equivalent to major triad above Cb
I don't understand why the last two aren't the same as the second
also the following two code snippets generate very different outputs, in ways that don't make sense to me