フィルターのクリア

How to plot y-axies?

1 回表示 (過去 30 日間)
skysky2000
skysky2000 2017 年 3 月 15 日
コメント済み: Rik 2017 年 3 月 15 日
Dear all, Could help me please about how to plot y-axies as seen in the figure below:
Thanks...

回答 (2 件)

Rik
Rik 2017 年 3 月 15 日
編集済み: Rik 2017 年 3 月 15 日
This is a logarithmic plot. So when you use the semilogy function, you can use
set(gca,'YTick',[1 2 8 16])
On newer versions of Matlab (I believe 2015b and later), you can use the yticks function (see this help page).

skysky2000
skysky2000 2017 年 3 月 15 日
not work.
  1 件のコメント
Rik
Rik 2017 年 3 月 15 日
What code are you using, because I get the axis you need with the code below:
x=[250 500 600 700 780];
y=[16 8 4 2 1];
semilogy(x,y)
set(gca,'YTick',[1 2 4 8 16])

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

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by