How to shift the y-axis and force it to start at another number rather than 0?

24 ビュー (過去 30 日間)
BN
BN 2020 年 11 月 16 日
コメント済み: Ameer Hamza 2020 年 11 月 16 日
Dear all,
I have this:
But I need to see what is the plot if the horizontal axes cross value is -3 like this (with same as above data):
How I can do this?
Thank you
  2 件のコメント
KSSV
KSSV 2020 年 11 月 16 日
Ass -3 to the data and plot.
BN
BN 2020 年 11 月 16 日
Hello, What do you mean? I don't understand your comment :(

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

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 11 月 16 日
You can change the yticklabels() to show the values you want. For example
rng(0);
lower_value = -3;
x = randn(1, 10);
y = x - lower_value;
bh = bar(y);
yticklabels(string(yticks+lower_value))
  2 件のコメント
BN
BN 2020 年 11 月 16 日
Thank you
Ameer Hamza
Ameer Hamza 2020 年 11 月 16 日
I am glad to be of help!

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by