Main public logs

Combined display of all available logs of Xenharmonic Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 12:01, 27 July 2026 Iii kaisei iii talk contribs created page User:Iii kaisei iii/31edo sound code (Created page with "This code generates a synthesized sound whose harmonic series is rounded to the nearest steps of 31edo. <syntaxhighlight lang=python> # Synthesizing a timbre for 31edo import numpy as np import soundfile as sf import matplotlib.pyplot as plt sample_rate = 48_000 duration = 3.0 base_frequency = 440.0 k = 0.4 t = np.arange(int(sample_rate * duration)) / sample_rate # Positions of the first 13 harmonics, rounded to the nearest 31edo steps steps = [0, 31, 49, 62, 72, 80...")