spkit
.sine_tracking¶
- spkit.sine_tracking(pfreq, pmag, pphase, tfreq, freqDevOffset=20, freqDevSlope=0.01)¶
Tracking sinusoids from one frame to the next
Tracking sinusoids from one frame to the next
- Parameters:
- frequencies
- pfreq, pmag, pphase: frequencies and magnitude of current frame
- tfreq: frequencies of incoming tracks from previous frame
- freqDevOffset: minimum frequency deviation at 0Hz
- freqDevSlope: slope increase of minimum frequency deviation
- Returns:
- tfreqn, tmagn, tphasen: frequency, magnitude and phase of tracks
See also
spkit
#TODO
Notes
#TODO
References
wikipedia -
Examples
>>> import numpy as np >>> import spkit as sp >>> #TODO