how to set legend in matlab
6 views (last 30 days)
Show older comments
how to set legend in matlab
0 Comments
Accepted Answer
KSSV
on 23 Sep 2021
% Auto
A = rand(10,2) ;
plot(A)
legend
% Manually
plot(A)
legend('first','second')
0 Comments
More Answers (1)
See Also
Categories
Find more on Legend in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!