This is only for phase, magnitude will need different method.
I used this for my lab instrument for comparing two signals with the same frequency and same amplitude. (audio application)
Zero Crossing method is the closest term that can descibe it.
Iterate through both signals and find the points where their values cross zero.
For each zero crossing in one signal, find the nearest zero crossing in the other signal and calculate the time difference between them.
Convert time difference to phase shift with:
phase_shift = 2 * pi * time_difference * frequency;
I used this for my lab instrument for comparing two signals with the same frequency and same amplitude. (audio application)
Zero Crossing method is the closest term that can descibe it.
Iterate through both signals and find the points where their values cross zero.
For each zero crossing in one signal, find the nearest zero crossing in the other signal and calculate the time difference between them.
Convert time difference to phase shift with:
phase_shift = 2 * pi * time_difference * frequency;
Code:
float zero_crossing_phase_shift(float *signal1, float *signal2, int n, float frequency) { int i, j; float time_diff = 0.0f; int found_zero_crossing = 0; for (i = 0; i < n - 1; i++) { if (signal1[i] * signal1[i + 1] < 0) { found_zero_crossing = 1; for (j = i + 1; j < n - 1; j++) { if (signal2[j] * signal2[j + 1] < 0) { time_diff = (float)(j - i) / frequency; break; } } break; } } float phase_shift = 2.0f * M_PI * time_diff * frequency; return phase_shift; }
Comment