Some demos that present different methods of solving for phase shifts of an AM sine.
Method 1:
- collect input samples (vo1, vo2)
- normalize input (minimax)
- envelope input (
abs(hilbert(TI))
) - low-pass filter envelope (
LC = 25Hz
) - model filtered (using analytic sine fit)
- use model to predict future (i.e. beat phase)
Method 2:
- collect input samples (vo1, vo2)
- normalize input (minimax)
- model 1, model 2
- use individual models to model TI
- use
phi_b
from TI model to predict future (i.e. beat phase)