Borrar filtros
Borrar filtros

change scaling of x-axis

23 visualizaciones (últimos 30 días)
Don
Don el 15 de Sept. de 2017
Comentada: Star Strider el 15 de Sept. de 2017
I have data in IDCount(1,:) that goes from 0 to, say, 260. I want to rescale so the x-axis will appear in seconds -- IDCount(1,:)/140. Cannot see how to do this

Respuesta aceptada

Star Strider
Star Strider el 15 de Sept. de 2017
Try this:
x = 0:260; % Create Data
y = rand(size(x)); % Create Data
figure(1)
plot(x, y)
xt = get(gca, 'XTick'); % 'XTick' Values
set(gca, 'XTick', xt, 'XTickLabel', xt/140) % Relabel 'XTick' With 'XTickLabel' Values
The set call relabels the 'XTick' values with the same values divided by 140.
  2 comentarios
Don
Don el 15 de Sept. de 2017
Thank you! That fixed it
Star Strider
Star Strider el 15 de Sept. de 2017
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by