Borrar filtros
Borrar filtros

Shifting a graph without altering the data itself.

4 visualizaciones (últimos 30 días)
Yuval
Yuval el 22 de Dic. de 2016
Comentada: Star Strider el 22 de Dic. de 2016
Hi, I have the following graph in which I'd like the two curves to coincide as closely as possible. Is there a way to achieve that without altering the data? Also, simply shifting the x data within the plot function by a certain offset (i.e. plot(x+offset,y)) doesn't yield the desired result.
Below is the plotting:
figure
subplot(2,1,1)
plot(k,RCS_PO,'k',k,RCS_MOM_soft,'m',k,RCS_MIE_soft,'b','LineWidth',2);

Respuestas (1)

Star Strider
Star Strider el 22 de Dic. de 2016
See the Signal Processing Toolbox alignsignals (link) function.
  6 comentarios
Yuval
Yuval el 22 de Dic. de 2016
I am not looking for an exact alignment, only an adequate shift in the x axis.
Star Strider
Star Strider el 22 de Dic. de 2016
For that, I would choose a subset of your data (for example 4 to 8 ka) and use the delay calculated from that. You would insert a zero or NaN vector the length of the delay returned as the third argument of alignsignals to your signal vector, and use linspace to extend your independent (probably time) vector to the appropriate length.

Iniciar sesión para comentar.

Categorías

Más información sobre Spectral Measurements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by