-
Notifications
You must be signed in to change notification settings - Fork 0
signal.PitchDetectionHarm.Function.estimatePitch_harmonicSum
Christian d'Heureuse edited this page Jun 7, 2026
·
2 revisions
dsp-collection / signal/PitchDetectionHarm / estimatePitch_harmonicSum
function estimatePitch_harmonicSum(
samples,
sampleRate,
position,
f0Min?,
f0Max?,
parms?): number;Defined in: signal/PitchDetectionHarm.ts:246
Estimates the pitch frequency of a signal by using the harmonicSum() salience function.
Float32Array<ArrayBufferLike> | Float64Array<ArrayBufferLike>
The input signal.
number
The sample rate of the input signal.
number
Position in the input signal where the pitch is to be estimated. Center position of the windows used for the frequency measurement. In seconds.
number = 75
Lower pitch frequency limit in Hz.
number = 900
Upper pitch frequency limit in Hz.
HarmonicSumParms = ...
Optional secondary parameters, which have default values.
number
The estimated pitch frequency in Hz.