User:Xenwolf/Python: Difference between revisions
Jump to navigation
Jump to search
m add automatic table of contents |
→Generate EDO exposés: retailored function |
||
| Line 31: | Line 31: | ||
== Generate EDO exposés == | == Generate EDO exposés == | ||
The following script creates most of the parameters for | The following script creates most of the parameters for EDO info boxes, it can also be used as a module: | ||
<syntaxhighlight lang="python"> | <syntaxhighlight lang="python"> | ||
import math | import math | ||
# | # step size in cents | ||
def ed_interval_size(steps, division=12, equiv=2 | def ed_interval_size(steps, division=12, equiv=2): | ||
return | return math.log(equiv, 2)/division * steps * 1200 | ||
def | # format (most of) of XenWiki info box | ||
def edo_info(n): | |||
a = ed_interval_size(1, n, 2) | |||
p5s = round(n*math.log(3/2, 2)) | p5s = round(n*math.log(3/2, 2)) | ||
p5c = round(p5s*1200/n) | p5c = round(p5s*1200/n) | ||
| Line 54: | Line 56: | ||
A1 = f'{A1s}\{n} ({A1c}¢)' | A1 = f'{A1s}\{n} ({A1c}¢)' | ||
print(f'{n} EDO ') | print(f'{n} EDO ') | ||
print(f'| Step size = { | print(f'| Step size = {a:.5f}¢') | ||
print(f'| Fifth = {p5}') | print(f'| Fifth = {p5}') | ||
print(f'| Major 2nd = {M2}') | print(f'| Major 2nd = {M2}') | ||
| Line 61: | Line 63: | ||
print() | print() | ||
# some examples | if __name__ == "__main__": | ||
for n in range(1, 100): | # some EDO examples | ||
for n in range(1, 100): | |||
ed_expose(n) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Latest revision as of 14:46, 13 June 2021
... just snippets ...
Calculate ED step size
import math
# formatted size string
def ed_interval_size(steps, division=12, equiv=2, digits=0):
return f'{math.log(equiv, 2)/division*steps * 1200:.{digits}f}'
# some examples
print('1\\271 EDT --- ', ed_interval_size(1, 271, 3, 5))
print('1\\100 EDF --- ', ed_interval_size(1, 100, 3/2, 5))
print('1\\171 EDO --- ', ed_interval_size(1, 171, 2, 5))
The equivalence intervals are:
Output of above script:
1\271 EDT --- 7.01828 1\100 EDF --- 7.01955 1\171 EDO --- 7.01754
Generate EDO exposés
The following script creates most of the parameters for EDO info boxes, it can also be used as a module:
import math
# step size in cents
def ed_interval_size(steps, division=12, equiv=2):
return math.log(equiv, 2)/division * steps * 1200
# format (most of) of XenWiki info box
def edo_info(n):
a = ed_interval_size(1, n, 2)
p5s = round(n*math.log(3/2, 2))
p5c = round(p5s*1200/n)
p5 = f'{p5s}\{n} ({p5c}¢)'
M2s = (2*p5s) % n
M2c = round(M2s*1200/n)
M2 = f'{M2s}\{n} ({M2c}¢)'
m2s = 3*n - 5*p5s
m2c = round(m2s*1200/n)
m2 = f'{m2s}\{n} ({m2c}¢)'
A1s = M2s - m2s
A1c = round(A1s*1200/n)
A1 = f'{A1s}\{n} ({A1c}¢)'
print(f'{n} EDO ')
print(f'| Step size = {a:.5f}¢')
print(f'| Fifth = {p5}')
print(f'| Major 2nd = {M2}')
print(f'| Minor 2nd = {m2}')
print(f'| Augmented 1sn = {A1}')
print()
if __name__ == "__main__":
# some EDO examples
for n in range(1, 100):
ed_expose(n)