Interface IIRFilterOptions

    interface IIRFilterOptions {
        channelCount?: number;
        channelCountMode?: ChannelCountMode;
        channelInterpretation?: ChannelInterpretation;
        feedback: number[];
        feedforward: number[];
    }
    Hierarchy

    Properties

    channelCount?: number
    channelCountMode?: ChannelCountMode
    channelInterpretation?: ChannelInterpretation
    feedback: number[]
    feedforward: number[]