@libraz/libcantus - v0.9.3
    Preparing search index...

    Type Alias ChordMatch

    A candidate chord interpretation of a pitch set.

    type ChordMatch = {
        rootPc: number;
        quality: ChordQuality;
        missingPcs: number[];
        extraPcs: number[];
        exact: boolean;
        inversion: number | null;
        bassPc?: number;
    }
    Index
    rootPc: number
    quality: ChordQuality
    missingPcs: number[]

    Chord tones absent from the input (an incomplete voicing).

    extraPcs: number[]

    Input pitch classes not belonging to the chord.

    exact: boolean

    True when the input pitch-class set equals the chord exactly.

    inversion: number | null

    Inversion implied by a known bass, or null for an unordered pitch-class set.

    bassPc?: number

    Bass pitch class when inverted (the lowest note is not the root).