Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some scales as ionian not working as expected #31

Open
txemi opened this issue Jun 28, 2021 · 0 comments
Open

Some scales as ionian not working as expected #31

txemi opened this issue Jun 28, 2021 · 0 comments

Comments

@txemi
Copy link

txemi commented Jun 28, 2021

Sorry if it is not an issue and my lack of musical knoledge instead, but this code did not show what I expected:

`
from pytheory import TonedScale

tsC4 = TonedScale(tonic='C4')
c4_major = tsC4['major']
c4_ionian = tsC4['ionian']
print('major: ' + str(c4_major))
print('ionian: ' + str(c4_ionian))
`

from: https://github.com/txemi/txpymusiclib/blob/master/learn_libs/learn_pytheory/t20_scale_error_report.py

and prints:

major: <Scale I=C4 II=D4 III=E4 IV=F4 V=G4 VI=A5 VII=B5 VIII=C5> ionian: <Scale I=C4 II=C#4 III=D#4 IV=F4 V=F#4 VI=G#4 VII=A#5 VIII=C5>

I expected to find for ionian same notes without decorators as said in:

https://en.wikipedia.org/wiki/Ionian_mode

I found this in muy project trying to merge scales from mingus, musthe and pytherory and watching that pytheory was the one with different output:

https://github.com/txemi/txpymusiclib/blob/master/learn_scales/scales.py

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant