Plot with a lag
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
alpedhuez
am 8 Jun. 2018
Bearbeitet: Brandon Free
am 11 Jun. 2018
Suppose I want to have plot of lagged x and y that belong in table T. For example, I want to have a plot that the first element of T.x is paired with second element of T.y, the second element of T.x is paired with the third element of T.y, etc. Please advise.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Brandon Free
am 8 Jun. 2018
Bearbeitet: Brandon Free
am 11 Jun. 2018
Because you have to always have the same number of x and y data, you could accomplish this by deleting a few entries. Also note that tables work the same way, meaning you always have to have the same length of x and y, so you first have to transform the tables to regular vectors.
XData = T.x;
YData = T.y;
XData(1) = [];
YData(end) = [];
plot(XData, YData)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!