Aug 26, 2003 #1 BigLeon Mechanical Joined Jul 22, 2003 Messages 7 Location US I have a matrix containing X, Y location of several dots. Can I plot them in a figure using plot function?
I have a matrix containing X, Y location of several dots. Can I plot them in a figure using plot function?
Aug 27, 2003 #2 cpretty Mechanical Joined Oct 9, 2001 Messages 113 Location NZ Try using plot(X,Y,'b+'); This will create a plot with every point (X,Y) marked by a blue + symbol. Look in the help for the symbols and colours. By omitting the line type there is no line shown. Cheers, Craig Upvote 0 Downvote
Try using plot(X,Y,'b+'); This will create a plot with every point (X,Y) marked by a blue + symbol. Look in the help for the symbols and colours. By omitting the line type there is no line shown. Cheers, Craig