필터 지우기
필터 지우기

How to have two legends on the same plot?

조회 수: 301 (최근 30일)
Miguel Martinez
Miguel Martinez 2023년 2월 23일
답변: Askic V 2023년 2월 23일
I just want to see a basic example of how to put two legends on the same plot on MATLAB 2020 and beyond...

답변 (2개)

Askic V
Askic V 2023년 2월 23일
Perhaps you meant this:
t = 0:0.1:5;
y = sin(t);
z = cos(t);
figure; hold on;
for i = 1:2
p1(i) = plot(t, y,'r');
p2(i) = plot(t, z,'b');
end
hold off
legend([p1(1) p2(1)],'sin', 'cos');
ah1 = axes('position',get(gca,'position'),'visible','off');
legend(ah1, [p1(2) p2(2)], {'Test1','Test2'}, 'Location','SouthWest');

KSSV
KSSV 2023년 2월 23일
figure
hold on
plot(rand(1,10),'r')
plot(rand(1,10),'b')
legend('One','Two')

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by