2011-04-01 115 views

回答

1

如果你問如何繪製只點,而不連接線,只需指定在呼叫marker and line stylePLOT

plot(1:length(vector),vector,'o'); % Use a circle with no connecting line 
+0

但是如何使用分散? – cMinor 2011-04-01 05:16:19

+0

@darkcminor:您已經問過如何在最後一個問題中使用SCATTER。散點圖繪製點,而不是線條。但PLOT可以繪製兩者或其中任何一個。 – gnovice 2011-04-01 05:27:45

0

散點圖可以以類似的方式來繪製。

scatter(1:length(vector),vector) 
0

plot(vector,'o')是一個更簡單的方法。