Plot every nth data point

61 visualizaciones (últimos 30 días)
Isabella Iaccino
Isabella Iaccino el 19 de Sept. de 2017
Respondida: James Tursa el 19 de Sept. de 2017
So I have a 1:3002 matrix/vector and I want to plot every 30th data point against time (so t=30 for the 30th data point, t=60 for the 60th etc) How do I do this? Is this even possible?

Respuestas (1)

James Tursa
James Tursa el 19 de Sept. de 2017
v = your vector
t = 1:numel(v);
plot(t(30:30:end),v(30:30:end)); % <-- assuming you want to start at 30th element

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by