@libraz/libcantus - v1.1.0
    Preparing search index...

    Type Alias TuningTable

    An equal-tempered tuning: a reference pitch and a number of equal divisions of the octave. With divisions === 12 a step index is an ordinary MIDI number.

    type TuningTable = {
        refStep: number;
        refFreq: number;
        divisions: number;
    }
    Index
    refStep: number

    Step index (MIDI number when divisions is 12) whose frequency is refFreq.

    refFreq: number

    Frequency in Hz of refStep.

    divisions: number

    Equal divisions of the octave (12 standard; e.g. 19 or 31 for microtonal).