필터 지우기
필터 지우기

Can anyone tell me what is the difference between scatter and plot commands in Matlab?

조회 수: 78 (최근 30일)
Hi I am new to matlab and going through basics. I am trying to plot points in Matlab HOwever, plot(1,2,3,4)
and
scatter([1,3],[2,4])
give me the same results. So what is the difference between plot and scatter command?

채택된 답변

Hugo
Hugo 2013년 6월 26일
scatter draws points without lines connecting them whereas plot may or may not plot the lines, depending on the arguments.
scatter returns a handle to an object called scattergroup whereas plot returns a handle to an object called lineseries. The scattergroup object has some properties (for example, for associating the size of the dots to a variable in the workspace) that are not present in the lineseries objects. Analogously, the lineseries has some properties (for exmaple, for controlling the type of lines) that are not present in the scattergroup object.
scatter allows you to specify a different colour and a different size for each point individually. It is not possible to do that with plot.
Hope this helps.
  댓글 수: 2
Geethika
Geethika 2013년 6월 26일
Hi Hugo, Thanks for the reply. Can you give me a code in scatter which enables me to specify different color and size for each point individually? Thanks
Hugo
Hugo 2013년 6월 28일
편집: Hugo 2013년 6월 28일
a=rand(100,3);
scatter(a(:,1),a(:,2),[40*ones(50,1);5*ones(50,1)],a(:,3))
That gives you random points in two different sizes and with random colours.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by