Table of 311edo intervals: Difference between revisions

Godtone (talk | contribs)
added new table for 41-limited add-73 77-odd-limit
Xenwolf (talk | contribs)
added syntax highlighting to python code. BTW: What are these HUGE tables for?
Line 944: Line 944:
The content of this table was generated with a small amount of Python 3 code, shown first:
The content of this table was generated with a small amount of Python 3 code, shown first:


<pre>
<syntaxhighlight lang="python">
import math
import math
h = [39,40,41,42,44,45,46,48,49,50,51,52,54,55,56,57,58,60,62,63,64,65,66,68,69,70,72,73,74,75,76,77,78]
h = [39,40,41,42,44,45,46,48,49,50,51,52,54,55,56,57,58,60,62,63,64,65,66,68,69,70,72,73,74,75,76,77,78]
Line 969: Line 969:
   m311[i] = '|-\n| | '+str(i)+'\n| | '+ (', '.join(m311[i]) if len(m311[i])>0 else '')
   m311[i] = '|-\n| | '+str(i)+'\n| | '+ (', '.join(m311[i]) if len(m311[i])>0 else '')
print( '\n'.join([s for s in m311.values()]) )
print( '\n'.join([s for s in m311.values()]) )
</pre>
</syntaxhighlight>


Note that the intervals listed for each interval of 311 EDO are in no particular order, so read carefully.
Note that the intervals listed for each interval of 311 EDO are in no particular order, so read carefully.