plot dots in Matlab
plot dots in Matlab
(OP)
I have a matrix containing X, Y location of several dots. Can I plot them in a figure using plot function?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: plot dots in Matlab
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