Setting y-axis in figure

2 ビュー (過去 30 日間)
FAWAZ FAREAD AL BAKRI
FAWAZ FAREAD AL BAKRI 2022 年 7 月 15 日
コメント済み: Voss 2022 年 7 月 16 日
Hello all...
I would like to set the y-axis as shown in thisFigure.

採用された回答

Voss
Voss 2022 年 7 月 15 日
ax = gca();
set(ax, ...
'YLim',[1 1e10], ...
'YScale','log', ...
'Box','on', ...
'XGrid','on', ...
'YGrid','on', ...
'YMinorGrid','off', ...
'YMinorTick','off', ...
'TickLength',[0.02 0.02], ...
'GridLineStyle',':', ...
'GridColor',[0 0 0], ...
'GridAlpha',1, ...
'FontSize',12)
ylabel('Infected cell y')
  2 件のコメント
FAWAZ FAREAD AL BAKRI
FAWAZ FAREAD AL BAKRI 2022 年 7 月 16 日
Thank you very much, it works perfectly.
Voss
Voss 2022 年 7 月 16 日
You're welcome!

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by