Query logarithmic axis properties
Mostrar comentarios más antiguos
After a plot is generated using semilogx, how do I query the x-axis properties, i.e., xLen, xMin, xScl?
Respuestas (2)
h = semilogx(1:10, 1:10);
ax = ancestor(h, 'axes')
Now query or change the properties of the axes whose handle is ax.
1 comentario
Joseph Powe
el 7 de Mzo. de 2022
Joseph Powe
el 5 de Mzo. de 2022
0 votos
2 comentarios
If you're asking for clarification on an answer, please post that question as a comment on the answer rather than as a separate answer.
I'm not sure what you're looking for when you say xScl. My suspicion is that you're looking for the XScale property.
h = semilogx(1:10, 1:10);
ax = ancestor(h, 'axes');
ax.XScale % Indices that the X axis is in log scale
If you want to see all the public properties that start with X, for example, use tab completion. It will list potential completions for that partial command.
ax.x% and then press the Tab key
Joseph Powe
el 11 de Mzo. de 2022
Categorías
Más información sobre Log Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

