The legend of the plot doesn't appear

1 vue (au cours des 30 derniers jours)
Lucas Veit
Lucas Veit le 8 Juil 2020
Commenté : Lucas Veit le 8 Juil 2020
Hi,
I want to plot a signal with a title and legend. But the legend doesn't appear on the plot, wheareas the title do.
Can someone help me please ?

Réponses (2)

madhan ravi
madhan ravi le 8 Juil 2020
  6 commentaires
madhan ravi
madhan ravi le 8 Juil 2020
Strange , try contacting the MathWorks support team for support.
Lucas Veit
Lucas Veit le 8 Juil 2020
thanks

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 8 Juil 2020
Modifié(e) : Image Analyst le 8 Juil 2020
Works for me:
t = 20;
ech = 0.001;
k = 1;
for i = 0:ech:t
y(k,:) = [i 3+sin(4*i)/5+cos(8*i)/9];
k = k + 1;
end
plot(y(:,1),y(:,2));
legend("signal");
Except that I don't get a title on my plot using your very same code. I don't see how you got a title instead of a legend. Are you sure you're not confusing the legend (inside the box inside the plot) with a title?
Try, in the command window:
>> restoredefaultpath
and try again.
  1 commentaire
Lucas Veit
Lucas Veit le 8 Juil 2020
Finally I have found the problem. Yesterday I worked on a file but there was a mistake because of the legend of a plot, so the file "legend.m" opened and I changed something accidently. Now it workes again !

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by