Legend function does not work in R2019b
Mostrar comentarios más antiguos
The following lines of code is just a simple use of legend function.
x = linspace(0,2*pi,360);
y = sin(x);
plot(x,y);
legend('sin(x)');
But the result I get in my computer is incomplete: the legend dose not show the line of the curve.

I run the code in mac and it doesn't have this issue. My system is windows 10 and the version of matlab is R2019b. I don't know what causes this problem and hope someone can help me figure it out.
Respuesta aceptada
Más respuestas (1)
Sulaymon Eshkabilov
el 12 de Oct. de 2019
Hi,
Your code is running ok in Win 10 and MATLAB 2019b. You should close all figure windows, run clear all command or/and if possible restart your MATLAB. Then you should get the anticipated outcome from your code.
Just an additional step to test your MATLAB is to run this slightly edited code of yours:
x = linspace(0,2*pi,360);
y = sin(x);
plot(x,y, 'b-o');
legend('sin(x)');
Good luck.
2 comentarios
Hangjun He
el 12 de Oct. de 2019
RANJAN HALDER
el 1 de Sept. de 2020
Thank You sir, opengl command didn't work for me by clearing all (excecuting clear all command), legend function is perfectly working for me.
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!