フィルターのクリア

Changing proportion of y axis

1 回表示 (過去 30 日間)
Maddie
Maddie 2011 年 8 月 3 日
Hey guys;
how do you change the units of one of the axes without changing the proportion of your graph? so, for example, say i had it in units of hours and i wanted to show it in minutes instead. How would I do that?

回答 (2 件)

Friedrich
Friedrich 2011 年 8 月 3 日
Hi,
I would start with something like this:
h = plot(1:10);
set(h,'YData',get(h,'YData')*60)
So you change the actual Y data of the plotted data, which leads to a refresh of the plot.

Jan
Jan 2011 年 8 月 3 日
I assume you want to set the X-limits for a kind of zooming:
x = rand(1, 1000);
ax1 = subplot(2, 1, 1);
plot(1:1000, x);
ax2 = subplot(2, 1, 2);
plot(1:1000, x);
pause(2);
set(ax2, 'Xlim', [1, 100]);

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by