フィルターのクリア

How to draw grid lines at specific x- and y-ticks?

35 ビュー (過去 30 日間)
Parthu P
Parthu P 2020 年 1 月 25 日
回答済み: Parthu P 2020 年 1 月 31 日
Hi,
I want to draw grid lines to a scatter plot only at tick '0'. The plot has x and y limits -1 to 1 and ticks at [-1 -0.75 -0.5 -0.25 0 0.25 0.5 0.75 1].
How could I do this without changing x- and y-ticks and without any additional major/minor grid lines?

採用された回答

Akira Agata
Akira Agata 2020 年 1 月 25 日
How about using xline and yline functions?
The following is an example:
% Sample plot
figure
scatter(-1+2*rand(100,1),-1+2*rand(100,1))
ax = gca;
ax.XTick = -1:0.25:1;
ax.YTick = -1:0.25:1;
box on
% Add x = 0 and y = 0 lines
xline(0,'--')
yline(0,'--')
grid.png

その他の回答 (1 件)

Parthu P
Parthu P 2020 年 1 月 31 日
Thank you very much Akira!

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by