ploting x,y coordinates in time

Hey,
How can I plot 2D graph with points of given x,y coordinates in time? So that at time point 1 the point has position (X1,Y1) at time point 2 the point has position (X2,Y2) etc.
cheers jakub

Answers (2)

x = [X1, X2, ...];
y = [Y1, Y2, ...];
plot(x,y);
???
Wayne King
Wayne King on 26 Oct 2011
Do you want a 3-D plot with time also on the graph? See the help for plot3(), surf().

3 Comments

Thanks, I ment 3D, sorry for this.
Then you can use what I suggested.

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Asked:

on 26 Oct 2011

Commented:

on 17 Mar 2019

Community Treasure Hunt

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

Start Hunting!