From: Joshua on
I am trying to graph 12 points of data on top of another graph which I know how to do. My issue that I'm currently struggling with is that when I plot the 12 points there is a line that runs through all 12 points and I would just like to have the actual points. Is there an easy solution to this problem? Please help and thank you.
From: Travis Knepp on
"Joshua " <joshuarambo(a)yahoo.com> wrote in message <hvb242$2sk$1(a)fred.mathworks.com>...
> I am trying to graph 12 points of data on top of another graph which I know how to do. My issue that I'm currently struggling with is that when I plot the 12 points there is a line that runs through all 12 points and I would just like to have the actual points. Is there an easy solution to this problem? Please help and thank you.

You need to specify the marker you want, otherwise MatLab always "connects the dots". Type "help plot" in the command prompt for details.
Try:

plot(X,Y,'.')
From: Travis Knepp on
"Joshua " <joshuarambo(a)yahoo.com> wrote in message <hvb242$2sk$1(a)fred.mathworks.com>...
> I am trying to graph 12 points of data on top of another graph which I know how to do. My issue that I'm currently struggling with is that when I plot the 12 points there is a line that runs through all 12 points and I would just like to have the actual points. Is there an easy solution to this problem? Please help and thank you.

You need to specify the marker you want, otherwise MatLab always "connects the dots". Type "help plot" in the command prompt for details.
Try:

plot(X,Y,'.')
From: Joshua on
Awesome got it. Thank you