You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
find_chords_from_notes(["C", "G", "E"]) ## Should return "C"?
[]
find_chords_from_notes(["G", "C", "E", "Bb"]) ## Should return "C7/G"
[]
Sorting the components will work for some cases but it may change the original chord. I have no quick solution for this issue, but let me consider how PyChord can cope with this.
I ran into this issue. If you try to recognize a say cmaj like so
It works correctly.
However, if i reorder the notes in a way that is not a rotation of the chord
finds nothing.
Would sorting the nodes before recognizing the chord help?
The text was updated successfully, but these errors were encountered: