Effacer les filtres
Effacer les filtres

X axis allignment of two signals with slight delay in time

2 vues (au cours des 30 derniers jours)
Husnain Ahmed
Husnain Ahmed le 7 Sep 2018
Commenté : Aquatris le 7 Sep 2018
I am plotting two signals which have slight time delay. I want to make them exact same. I tried make it by subtracting they look alligned but then subtracted signal does not start from 0. The both plots are attached. Is there any possible way to make them align and both start and end at same point.
  3 commentaires
Husnain Ahmed
Husnain Ahmed le 7 Sep 2018
Actually this data has been plotted from one sensor but data was collected in Real Time PC and another PC that is why there is some difference in the y axis values.
Aquatris
Aquatris le 7 Sep 2018
Why do you expect the time to start at zero since you shift the signal?
You can either not show the negative time part of the plot by xlim([0 80]) command or instead of doing t = t-delay, do
index = find(t=<delay);
t(delay) =[];
data(delay) = [];
t = t-t(1); % make the time start at 0

Connectez-vous pour commenter.

Réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by