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
Andrew Newell
2011년 5월 15일
This sounds like a problem for MATLAB Support.
Walter Roberson
2011년 5월 15일
Some forms of remote access can cause this problem. How are you accessing?
Craig
2011년 5월 16일
Joao Melo
2016년 7월 7일
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
2020년 4월 13일
just write figure(1), or howerver your figure was called
채택된 답변
추가 답변 (3개)
Joao Melo
2016년 7월 7일
35 개 추천
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
John Ondov
2018년 7월 13일
편집: John Ondov
2018년 7월 13일
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
2020년 3월 6일
Thank you, it worked!
Akshay Raju
2020년 8월 19일
Awesome! Worked for me
Maymarie van den Heever
2020년 9월 5일
Same here, thx!
Jordan Willis
2020년 12월 10일
Shout out to Joao. I almost punched a hole through my monitor trying to figure this out.
Arunima Sarkar
2021년 4월 18일
Thank you JOAO..
michelle
2023년 5월 8일
This worked for me, as well! Thank you!
Shivam
2024년 5월 13일
Worked for me as well just before i needed to submit my plot, you are a legend.
Thanks a lot
Mariami
2025년 9월 25일
Yay Worked!
I was getting ready to start crying :D
Mikolaj
2025년 10월 18일
Thank you so much
Vesa
2026년 1월 15일
This saved my day, thank you!
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
HABILA
2018년 2월 23일
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 !
Sean de Wolski
2011년 5월 16일
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
Craig
2011년 5월 16일
Sean de Wolski
2011년 5월 16일
Call Tech Support and/or reinstall...
Terry
2025년 9월 18일
This worked for me on MacOSX
No idea what this hidden figure thing is but dang it is annoying
카테고리
도움말 센터 및 File Exchange에서 Graphics Performance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!