figure won't come up after using plot

I am fairly new to MATLAB. In the past I've been able to plot with no trouble. A figure would automatically come up after I used "plot". Now when I plot, no figure appears. Here's a simple example:
>> x = 1:10;
>> y = 3*x;
>> plot(x,y)
>>
Nothing comes up after this - no error message, no figure. I'm hoping this involves something simple like changing a setting. It worked fine just a week or two ago.
I tried using the "plottools" command, but that just brings up a blank figure window. It also gives me the following message in the command window:
>> plottools
Warning: OpenGL appears to be installed incorrectly.
> In opengl at 150
In getplottool>createOrGetSelectionManager at 71
In getplottool at 58
In plottools at 148
>>
I should also mention that I have been remote accessing my office computer for the last week and I can't recall if this problem started before or after. Though I wouldn't think that would be the cause of the problem. Any help would be greatly appreciated.

5 comentarios

Andrew Newell
Andrew Newell el 15 de Mayo de 2011
This sounds like a problem for MATLAB Support.
Walter Roberson
Walter Roberson el 15 de Mayo de 2011
Some forms of remote access can cause this problem. How are you accessing?
Craig
Craig el 16 de Mayo de 2011
Walter, I am remote accessing my office computer through WebVPN. I am also using a laptop with a much smaller screen. I wish I could go to my office to see if I am having the problem there, but I am away from my office for the next week or so. However, I have had no other problems while remote accessing MATLAB.
Joao Melo
Joao Melo el 7 de Jul. de 2016
Hello, could you solve this problem? I am having the same issue and I also started remotelly acessing my computer. How did you solve this? Thank you
Frederika Sefaj
Frederika Sefaj el 13 de Abr. de 2020
just write figure(1), or howerver your figure was called

Iniciar sesión para comentar.

 Respuesta aceptada

Craig
Craig el 21 de Mayo de 2011
OK, I think I figured this out. When I start up MATLAB, I get this message and I'm guessing this has to due with the fact that I am remote accessing my office computer:
MATLAB only supports a screen depth of 16 or higher (Truecolor.)
MATLAB is running in headless mode. Figure windows will not be displayed.

2 comentarios

Carmel Auerbach
Carmel Auerbach el 31 de Jul. de 2021
So how is this solved? Im also accessing my computer remotely and cant see the content of the figures
Moch Yasin
Moch Yasin el 18 de Nov. de 2023
This work for me too. thank you very much.

Iniciar sesión para comentar.

Más respuestas (8)

Joao Melo
Joao Melo el 7 de Jul. de 2016

35 votos

Ok, figured it out:
In one of the menus in the task bar there is one called plots (Home Plots Apps).
One the far rigth side, there are two options: Reuse figure or new figure.
1) Make sure it is in new figure 2) Restart Matlab 3) Your plot should open

11 comentarios

John Ondov
John Ondov el 13 de Jul. de 2018
Editada: John Ondov el 13 de Jul. de 2018
Joao's solution worked for me! I shall be making use of the drawnow command also as posted by Raady. Thank you both!
Akila Wijeratne
Akila Wijeratne el 6 de Mzo. de 2020
Thank you, it worked!
Akshay Raju
Akshay Raju el 19 de Ag. de 2020
Awesome! Worked for me
Maymarie van den Heever
Maymarie van den Heever el 5 de Sept. de 2020
Same here, thx!
Jordan Willis
Jordan Willis el 10 de Dic. de 2020
Shout out to Joao. I almost punched a hole through my monitor trying to figure this out.
Arunima Sarkar
Arunima Sarkar el 18 de Abr. de 2021
Thank you JOAO..
michelle
michelle el 8 de Mayo de 2023
This worked for me, as well! Thank you!
Shivam
Shivam el 13 de Mayo de 2024
Worked for me as well just before i needed to submit my plot, you are a legend.
Thanks a lot
Mariami
Mariami el 25 de Sept. de 2025
Yay Worked!
I was getting ready to start crying :D
Mikolaj
Mikolaj el 18 de Oct. de 2025
Thank you so much
Vesa
Vesa el 15 de En. de 2026
This saved my day, thank you!

Iniciar sesión para comentar.

Raady
Raady el 6 de En. de 2016

4 votos

this answer helps when body checking this thread again.
if you are using the figure to plot in a loop, you have to use command as below , then you can see the figure.
drawnow;

1 comentario

HABILA
HABILA el 23 de Feb. de 2018
I also had the issue on running my old code ploting figures on loop using hold on, earlier it was working fine in MATLAB2008 and MATLAB2011 but it wasn't showing plot while running the same code in MATLAB2015. Now adding the command drawline its working fine. don't know the exact reason why... still thank you !

Iniciar sesión para comentar.

Arturo Moncada-Torres
Arturo Moncada-Torres el 16 de Mayo de 2011
Have you tried opening a figure "by hand"?
noFigure = 1;
figure(noFigure);
x = 1:10;
y = 3*x;
plot(x,y);
Hope it helps ;-)!

4 comentarios

Craig
Craig el 16 de Mayo de 2011
I tried this and no figure came up. I also tried
>> x = 1:10;
>> y = 3*x;
>> h = plot(x,y);
>> h
h = 174.0028
>>
Not sure what this means.
Sean de Wolski
Sean de Wolski el 16 de Mayo de 2011
h is the handle to your figure.
What happens if you type:
figure(h)
?
Arturo Moncada-Torres
Arturo Moncada-Torres el 16 de Mayo de 2011
This is a handler. A handler is a numerical identifier that makes reference to an object. With it, you can access and manipulate the object's properties. However, I think this is not what we are looking for.
Craig
Craig el 16 de Mayo de 2011
I did try figure(h) and that just gave me an error. It says it must be an integer and h = 174.0028.

Iniciar sesión para comentar.

Sean de Wolski
Sean de Wolski el 16 de Mayo de 2011
Are you on Macintosh?
I have problems with MATLAB figures hiding behind things, a major shortcoming of MacOSX in general.
I wrote a script fgcf.m that is literally
figure(gcf)
So in the event that I plot something and it appears on a hidden figure that figure is surfaced.

3 comentarios

Craig
Craig el 16 de Mayo de 2011
I am running MATLAB on a PC. I tried the command you suggested and it didn't bring anything up.
Sean de Wolski
Sean de Wolski el 16 de Mayo de 2011
Call Tech Support and/or reinstall...
Terry
Terry el 18 de Sept. de 2025
This worked for me on MacOSX
No idea what this hidden figure thing is but dang it is annoying

Iniciar sesión para comentar.

Paulo Silva
Paulo Silva el 16 de Mayo de 2011

0 votos

I had that problem in MATLAB 2008b for awhile, no clue what caused it and what fixed it, just put figure before the plot command.
Arturo Moncada-Torres
Arturo Moncada-Torres el 16 de Mayo de 2011
You could try:
x = 1:1 0;
y = 3*x;
gcf;
plot(x,y);
Give it a try ;-) !

2 comentarios

Mike Majer
Mike Majer el 29 de Ag. de 2014
Movida: DGM el 5 de Ag. de 2025
Thanks Arturo Moncada-Torres. I think the gcf line got it for me. What is gcf?
Rick Pooler
Rick Pooler el 23 de Feb. de 2017
Movida: DGM el 5 de Ag. de 2025
gcf - get current figure

Iniciar sesión para comentar.

Shubham Agrawal
Shubham Agrawal el 24 de Feb. de 2019
First of all there is no loop in your matlab script. You can use 'For' loop in this particular program.
Secondary thing is that you are not making any matrix which can store value of inputs and outputs.
I am pasting solution for your query. This thing is working.
k=0;
Y=[ ];
X=[ ];
for x=0:10
y=3*x;
k=k+1;
X(k,1)=x;
Y(k,1)=y;
end
plot(X,Y)

1 comentario

The user had
y = 3*x;
y will be a matrix that stores the appropriate values corresponding to the vector of x values.
There is no need at all to use a loop for this purpose; vectorization is perfectly fine.
The problem had nothing at all to do with this. The user was using remote access software that was interfering with being able to get the proper plots.

Iniciar sesión para comentar.

Supriya
Supriya el 4 de Ag. de 2025

0 votos

I'm relatively new to MATLAB. Previously, I had no issues with plotting — a figure window would automatically open whenever I used the plot command. However, now when I try to plot something, no figure window shows up.Please resolve it.

3 comentarios

DGM
DGM el 5 de Ag. de 2025
If I had to guess, I'd guess that you had a figure window under your main window and you're just not seeing it. If I didn't have to guess, I wouldn't be guessing.
Vinod
Vinod el 7 de Ag. de 2025
Are you using MATLAB on yoru desktop or MATLAB Online? If you see this behavior in MATLAB Online, try the MATLAB Answer here.
Stephen
Stephen el 3 de Sept. de 2025
Im having the same issue in Matlab on fedora, if im in -nodesktop or -nodisplay no plot will show up and that didnt used to be the case.

Iniciar sesión para comentar.

Categorías

Más información sobre Graphics Performance en Centro de ayuda y File Exchange.

Preguntada:

el 15 de Mayo de 2011

Comentada:

el 15 de En. de 2026

Community Treasure Hunt

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

Start Hunting!

Translated by