Build an equal temperament with n divisions of the octave.
n
Divisions of the octave (e.g. 19, 24, 31).
Reference frequency in Hz (default 440).
Step index of the reference (default 69).
The tuning.
import { edo, frequencyOf } from '@libraz/libcantus';const et19 = edo(19); // { refStep: 69, refFreq: 440, divisions: 19 }frequencyOf(70, et19); // one 19-EDO step above A4 Copy
import { edo, frequencyOf } from '@libraz/libcantus';const et19 = edo(19); // { refStep: 69, refFreq: 440, divisions: 19 }frequencyOf(70, et19); // one 19-EDO step above A4
Build an equal temperament with
ndivisions of the octave.