How do I set the range of on axis, as well as making it logrythmic scale without taking logs of the results please?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jamie Shelley
el 14 de Jul. de 2016
Comentada: Jamie Shelley
el 14 de Jul. de 2016
My graph needs an edited axis, but I can't get it to work; my plot (simplified) is just plot(x,y) thanks
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 14 de Jul. de 2016
set(gca,'xscal','log')
3 comentarios
Azzi Abdelmalek
el 14 de Jul. de 2016
t=0:0.1:12
y=sin(t)
plot(t,y)
xlim([0.01 10])
set(gca,'xscale','log')
Más respuestas (0)
Ver también
Categorías
Más información sobre Interpolation 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!