Interface AutoPhaseCorrectionOptions

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

Properties

factorNoise?: number

scale the cutoff like factorStd * noiseLevel

Default

3
magnitudeMode?: boolean

if true it uses magnitude spectrum.boolean

Default

true
maxDistanceToJoin?: number

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

Default

256
minRegSize?: number

min number of points to auto phase a region

Default

30
reverse?: boolean

Apply the phase correction from the last element of the array

Default

false