フィルターのクリア

Plot a time series plot in customized rectangle

2 ビュー (過去 30 日間)
Sujata Dhar
Sujata Dhar 2024 年 4 月 2 日
コメント済み: Sujata Dhar 2024 年 4 月 2 日
I am plotting a time series from the attached data.
plot(time,pm_1,'b-','LineWidth',3);
I am getting the following plot (plot_xp.png). But I want my plot to be in a rectangle window like the attached (desired_plot.png). Can you please help me with the necessary changes.
Thank you very much
  1 件のコメント
nathan blanc
nathan blanc 2024 年 4 月 2 日
編集済み: nathan blanc 2024 年 4 月 2 日
I think if you just write:
plot(time,pm_1);
grid off
and change the size of the figure window a bit, you will get what you want. You can also play around with hte colors and linewidths. for example
plot(time,pm_1,'r-','LineWidth',1);
will give you a red line with a line width of 1

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

採用された回答

Adam Danz
Adam Danz 2024 年 4 月 2 日
Previous answers suggest changing the size of the figure window which is one solution.
Another solution is to set the size of the axes or the PlotBoxAspectRatio.
Take this sine curve for example.
th = 0:.1:120;
figure()
plot(sin(th))
Next, define the aspect ratio of the axes such that the x axis is 5 times longer than the y axis. I'll ignore the z axis since this is a 2D plot.
figure()
ax = gca;
plot(sin(th))
ax.PlotBoxAspectRatio(1:2) = [5,1]; % 5:1 x:y

その他の回答 (2 件)

KSSV
KSSV 2024 年 4 月 2 日
編集済み: KSSV 2024 年 4 月 2 日
plot(time,pm_1,'b','LineWidth',1); % You may change line width

nathan blanc
nathan blanc 2024 年 4 月 2 日
編集済み: nathan blanc 2024 年 4 月 2 日
nathan blanc about 2 hours ago
Edited: nathan blanc about 2 hours ago
plot(time,pm_1);
grid off
and change the size of the figure window a bit, you will get what you want. You can also play around with hte colors and linewidths. for example
plot(time,pm_1,'r-','LineWidth',1);
will give you a red line with a line width of 1

カテゴリ

Help Center および File ExchangeLabels and Annotations についてさらに検索

製品


リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by