Godtone (talk | contribs)
My Python 3 code: rename function for converting a text string containing a list of intervals into an actual list of those intervals to "scalestr", and add function for interleaving "interleave"
Godtone (talk | contribs)
m My Python 3 code: fix var name
Line 1,459: Line 1,459:
totalivs = []
totalivs = []
for i in range(n):
for i in range(n):
totalivs = totalivs + [mul_iv( *([x] + [equave]*i) ) for x in ivs if x not in totalivs]
totalivs = totalivs + [mul_iv( *([x] + [offset]*i) ) for x in ivs if x not in totalivs]
totalivs.sort(key=lambda x: as_float(x))
totalivs.sort(key=lambda x: as_float(x))
return totalivs
return totalivs