From: Joshua on 16 Jun 2010 13:37 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 16 Jun 2010 13:49 "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 16 Jun 2010 13:49 "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 16 Jun 2010 14:05 Awesome got it. Thank you
|
Pages: 1 Prev: Can I disable 'timeout' for the instrument control? Next: image matrix aglinment |