Created
September 10, 2021 07:32
-
-
Save joshstovall/c121725cda08901bedf07b20ad1d7fa7 to your computer and use it in GitHub Desktop.
pythagorean tuning ratios
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pythagorean tuning ratios | |
var ratio = [ | |
1/1, // unision | |
256/243, // minor second | |
9/8, // major second | |
32/27, // minor third | |
81/64, // major third | |
4/3, // perfect fourth | |
729/512, // tritone | |
3/2, // perfect fifth | |
128/81, // minor sixth | |
27/16, // major sixth | |
16/9, // minor seventh | |
243/128, // major seventh | |
2, // octave | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment