Regarding plot display issue

I am unable to view the plot after giving plot command. The figure window looks blank. I am attaching a snap of how it looks. Please help me with this.

8 comentarios

Adam Danz
Adam Danz el 13 de Nov. de 2020
You're either 1) not specifying the axis handle and it's being plotted on another figure, 2) the axes are positioned outside of the visibile figure, 3) an error is stopping the execution of the plot.
dpb
dpb el 13 de Nov. de 2020
Add
clear
close all
figure
in front of above sequence of commands and report back.
Onkar Khadke
Onkar Khadke el 14 de Nov. de 2020
Thank you it worked.
dpb
dpb el 14 de Nov. de 2020
So, another figure/axis was active instead of the one you though/intended...
Onkar Khadke
Onkar Khadke el 14 de Nov. de 2020
Yeah,now it works well. Thank you for your response
Adam Danz
Adam Danz el 14 de Nov. de 2020
Editada: Adam Danz el 14 de Nov. de 2020
Get in the habit of specifying the parent of graphics objects.
Examples:
fig = figure();
ax = axes(fig);
plot(ax, rand(1,10))
Onkar Khadke
Onkar Khadke el 14 de Nov. de 2020
Sure, I will make it a habit.
dpb
dpb el 14 de Nov. de 2020
What can happen to cause the symptom you saw before is, that without code between the time you created the figure you intended to plot into you may have looked at another figure manually. That user intervention would have changed the current axes from the figure so that the implicit handle in a plot() command without an explicit reference would use gca -- the one then being pointed at, not the figure that was created.
That's just one easy to visualize way that focus can change sorta' unexpectedly -- there are many other ways besides...hence the recommendation to always be safe when coding.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.

Productos

Versión

R2020a

Etiquetas

Preguntada:

el 13 de Nov. de 2020

Comentada:

dpb
el 14 de Nov. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by