Borrar filtros
Borrar filtros

Changing proportion of y axis

1 visualización (últimos 30 días)
Maddie
Maddie el 3 de Ag. de 2011
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?

Respuestas (2)

Friedrich
Friedrich el 3 de Ag. de 2011
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 el 3 de Ag. de 2011
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]);

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by