Specifying both marker type and marker size in a 'scatter' call

48 ビュー (過去 30 日間)
z8080
z8080 2019 年 1 月 9 日
コメント済み: z8080 2019 年 1 月 10 日
From the documentation of the scatter command, it seems that markers can be specified in their type or in their size, but not in both, depending on which syntax is used to call the function. Indeed, there is no specific MarkerSize property to this command.
How can I specify the markers' type and size simultaneously, in the same scatter command, or what is an easy workaround if it cannot be done with one command?
Many thanks!

採用された回答

Adam Danz
Adam Danz 2019 年 1 月 9 日
編集済み: Adam Danz 2019 年 1 月 9 日
Check out the 3rd input to scatter()
If you're changing the size after plotting,
h = scatter(x,y);
h.SizeData = 60;
  3 件のコメント
Adam Danz
Adam Danz 2019 年 1 月 10 日
Well, that's not what I was suggesting. The better solution is to specify the size of the markers as you're calling scatter() by using the 3rd input to that function (see the documentation). The 3rd inputs specifies the marker size.
Sometimes it is necssary to change the marker size after it's been plotted which is my 2nd solution.
z8080
z8080 2019 年 1 月 10 日
Got it. Thanks again!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeScatter Plots についてさらに検索

タグ

製品


リリース

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by