Interface AutoPhaseCorrectionOptions

interface AutoPhaseCorrectionOptions {
    factorNoise?: number;
    magnitudeMode?: boolean;
    maxDistanceToJoin?: number;
    minRegSize?: number;
    reverse?: boolean;
}

Properties

factorNoise?: number

scale the cutoff like factorStd * noiseLevel

3
magnitudeMode?: boolean

if true it uses magnitude spectrum.boolean

true
maxDistanceToJoin?: number

max distance between regions (in number of points) to join two regions

256
minRegSize?: number

min number of points to auto phase a region

30
reverse?: boolean

Apply the phase correction from the last element of the array

false