フィルターのクリア

How to change time in plot?

5 ビュー (過去 30 日間)
Krystian Wiewiór
Krystian Wiewiór 2018 年 6 月 1 日
回答済み: Krystian Wiewiór 2018 年 6 月 1 日
Hello, How to create new value "10^2" instead of "10^4" in the plot? Thank you for answer, below I send a picture.
  2 件のコメント
Ameer Hamza
Ameer Hamza 2018 年 6 月 1 日
Do you just want to replace 10^4 with 10^2 or do you want to actually change your graph?
Krystian Wiewiór
Krystian Wiewiór 2018 年 6 月 1 日
In my exercise I need make a plot for registration of time: 100s. If is it possible, you might show me two option and I will decide at least.

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

採用された回答

Ameer Hamza
Ameer Hamza 2018 年 6 月 1 日
編集済み: Ameer Hamza 2018 年 6 月 1 日
If you are just interested in scaling down the x-values then try these lines
ax = gca;
ax.Children.XData = ax.Children.XData/100;
Run this line after creating the original figure.
  2 件のコメント
Krystian Wiewiór
Krystian Wiewiór 2018 年 6 月 1 日
It works, I made it /1000. I am really new at matlab, is it possible to make maximum 100[s] without this empty area till 120[s]?
Ameer Hamza
Ameer Hamza 2018 年 6 月 1 日
Yes, you can easily change the limit,
ax = gca;
ax.XLim = [0 100];

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

その他の回答 (1 件)

Krystian Wiewiór
Krystian Wiewiór 2018 年 6 月 1 日
Thank you, it is done :) Greetings

カテゴリ

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