Limits of Functions alignsigna​l/finddela​y/xcorr - Need help aligning signals

7 views (last 30 days)
Hey :)
I am trying to align multiple signal so i can compare them.
I tried using xcorr/alignsignals and finddelay. But it seems like these functions are not able to find the delay. Both signal where recorded on different systems, but they do have the same sample frequency.
Do you have any suggestions? Are there other options to accomplish this task?
Thanks :)

Answers (1)

Githin George
Githin George on 15 Dec 2023
Hello Alex,
It is my understanding that you are trying to align multiple signals so that you can compare them.
You can use the “alignsignals” function in Signal Processing Toolbox to estimate the delay between two signals and obtain the aligned signals as well. In addition, you can use the Signal Analyser App in MATLAB to visualise the original signals and the modified ones to ensure you obtained the correct results.
You can take a look at the example code below , where I am comparing the signals from the two provided MAT files.
load signal1.mat
load signal2.mat
X = eul_robot(:,3);
Y = euler_madg_6dof(:,3);
[Xa,Ya,D] = alignsignals(X,Y);
The variable “D” contains the number of samples by which “X” and “Y” are offset.
Please have a look at the documentation of “alignsignals” function for details.
I hope this helps.

Products


Release

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!