how to plot fewer marker ?

37 ビュー (過去 30 日間)
Umang Dongre
Umang Dongre 2019 年 3 月 14 日
コメント済み: li weilin 2020 年 2 月 8 日
Capture.PNG
plot(VarName10, VarName9,'Marker','*','MarkerIndices',1:100:length(VarName9));
I tried this but it shows error
Error using plot
Invalid property found.
Object Name: line
Property Name: 'MarkerIndices'.
How to do that?
Thanks in advance!

採用された回答

Raghunandan V
Raghunandan V 2019 年 3 月 14 日
Hi,
Can't you just delete a few data from VarName10?
You can write a simple code like this
VarNamePlot = VarName10;
m = length(VarNamePlot);
index = [1:m]
OddIndices = index(rem(index,2) == 1)
VarNamePlot10 = VarName10(OddIndices);
VarnamePlot9 = VarName9(OddIndices);
And then use VarNamePlot to plot . This will reduce the number of points to plot.
Or just use
plot(VarName10, VarName9, '*')
  2 件のコメント
Umang Dongre
Umang Dongre 2019 年 3 月 15 日
yes I did,
plot(VarName10, VarName9, 'Marker', '*')
but I want to increce spacing in between them.
Raghunandan V
Raghunandan V 2019 年 3 月 15 日
Oh... In that case you have to zoom in the graph.you cant do it here programatically.

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

その他の回答 (1 件)

Steven Lord
Steven Lord 2019 年 3 月 15 日
The MarkerIndices property was introduced in release R2016b. If you're using an older release, consider upgrading to R2016b or a later release.
  1 件のコメント
li weilin
li weilin 2020 年 2 月 8 日
You are right! Give beer to you if you are beside me.

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

カテゴリ

Help Center および File ExchangeVisual Exploration についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by