Changing xlim with plotyy
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Amanda
el 5 de Dic. de 2012
Comentada: Walter Roberson
el 27 de Oct. de 2016
I'm trying to figure out how to adjust the x axis limits for both y plots. The function:
[AX,H1,H2] = plotyy(pitch,Torque,pitch,RPM)
I understand using xlim([min max]), but that only applies to the first x axis and not the second. Are there any functions or methods to accomplish this?
0 comentarios
Respuesta aceptada
Walter Roberson
el 5 de Dic. de 2012
Editada: Walter Roberson
el 27 de Oct. de 2016
xlim(AX(2), [min max])
3 comentarios
William Gracias
el 27 de Oct. de 2016
Editada: William Gracias
el 27 de Oct. de 2016
This solution doesn't work on Matlab 2015b. Is there any solution to change X axis limits using plotyy in 2015b?
Walter Roberson
el 27 de Oct. de 2016
Example:
x1 = linspace(1,10,20); x2 = linspace(3,8,20); y1 = x1.^3 - 5*x1 + 3; y2 = log(x2);
[AX, H1, H2] = plotyy(x1, y1, x2, y2);
xlim(AX(2), [4 7]);
Tested in R2015b specifically.
Más respuestas (0)
Ver también
Categorías
Más información sobre Two y-axis 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!