フィルターのクリア

Setting additional specific axis tick marks

48 ビュー (過去 30 日間)
Etienne O'Brien
Etienne O'Brien 2011 年 6 月 16 日
コメント済み: Walter Roberson 2019 年 5 月 8 日
I have a y axis that spans 0 - 15. I want to place an extra tick mark (labelled with its value) at the minimum value of y (0.018 in one data set, for example).
It is not appropriate for me to use a log scale - the data is well presented, it is just not obvious to the reader that the minimum value is not zero.
Thank you.

採用された回答

Walter Roberson
Walter Roberson 2011 年 6 月 16 日
set(gca, 'YTick', sort([0.018, get(gca, 'YTick')]));
  9 件のコメント
Jafar Habshee
Jafar Habshee 2019 年 5 月 8 日
How can the label be added in similar fasion?
Walter Roberson
Walter Roberson 2019 年 5 月 8 日
After setting the YTick, you can pull out the YTick again and format the values and send those to the YTickLabels property.
With R2014b or later you would typically only do that if you had special formatting needs, such as needing one label to look different than the others, or if you wanted to convert each value to its multiple of Pi : for plain formatting issues you would instead set the axes YAxis.TickLabelFormat property.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by