The function plot(x,y) gives a blank graph window
Mostrar comentarios más antiguos
I typed the following code in the command window, and the figure window comes out blank:
>> x = [1 2 3 5 7 7.5 8 10]
>> y = [2 6.5 7 7 5.5 4 6 8]
>> plot(x,y)
I am using MATLAB R2010a on Windows 10, 64-bit. Please help!
Respuestas (3)
Star Strider
el 5 de Mzo. de 2017
2 votos
According to Platform Road Map for the MATLAB and Simulink Product Families (link), the earliest version of MATLAB supported on Windows 10 is R2015a.
That could be the problem.
the cyclist
el 5 de Mzo. de 2017
Editada: the cyclist
el 5 de Mzo. de 2017
That command produces the expected plot for me.
You might be pointing to something other than the built-in plot command. What is the output of the command
which plot -all
Also, do you also get a blank plot window if you force the creation of a new figure window?
x = [1 2 3 5 7 7.5 8 10]
y = [2 6.5 7 7 5.5 4 6 8]
figure
plot(x,y)
2 comentarios
Samama Fahim
el 5 de Mzo. de 2017
Samama Fahim
el 5 de Mzo. de 2017
Editada: Samama Fahim
el 5 de Mzo. de 2017
Peter Krammer
el 20 de Oct. de 2018
- Completely restart the Matlab
- Try this set command, before plotting into figure
set(0, 'defaultFigureRenderer', 'painters')
3. If its does not helps, try follow:
opengl info
opengl software
Nice Day
Categorías
Más información sobre Graphics Performance 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!