Can someone please explain what I’m doing wrong?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Gunjan
am 23 Jan. 2024
Kommentiert: Star Strider
am 23 Jan. 2024
Neither my xlabel command in line 4 is working nor the legend command

0 Kommentare
Akzeptierte Antwort
Star Strider
am 23 Jan. 2024
Bearbeitet: Star Strider
am 23 Jan. 2024
The semicolon in the legend call is wrong (in this context).
It would be better to write all that as a script rather than in the Command Window.
When you do that, it works —
x = -5:0.1:5;
s = sin(x);
c = cos(x);
plot(x,s, x,c)
xlabel('x')
ylabel('sine or cosine')
legend('sine','cosine')
EDIT — Corrected typographical errors.
.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Legend finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!