|
"Roger " <roger.alms@yahoo.com> wrote in message
news:hv80rg$4aq$1@fred.mathworks.com...
>I have just started an applied statistics course and I need to do a simple
>dot plot on discrete data. I can find the histogram plots and many other
>plots but not a simple dot plot. Is there a matlab function that can do
>this?
By "dot plot" do you mean a SCATTER plot?
help scatter
Or if the "dots" are the same size, just plot individual points:
x = rand(1, 10);
y = rand(1, 10);
plot(x, y, 'o') % No line specifier in the LineSpec => no line
--
Steve Lord
slord@mathworks.com
comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ
To contact Technical Support use the Contact Us link on
http://www.mathworks.com
|