How to plot the two legend in a Matlab Figure?
이전 댓글 표시
I have used the command for two legend as:
legend([Q1 Q2 Q3 Q4], 'Analytical, P_S=0 dBW', 'Simulation, P_S=0 dBW','Analytical, P_S=5 dBW', 'Simulation, P_S=5 dBW');
d=axes('position',get(gca,'position'),'visible','off');
legend(d,[Q5 Q6 Q7 Q8], 'Analytical, P_S=10 dBW', 'Simulation, P_S=10 dBW','Analytical, P_S=15 dBW', 'Simulation, P_S=15 dBW','Location','EastOutside');
where Q1 to Q8 are the Figures, for example; Q1= semilogy(x, y); same way Q2 and other. I also got the two Legend in a figure, but I don't understands about the command 'd=axes('position',get(gca,'position'),'visible','off');'.
Please help me clearly if someone known about it. I want to know;
- (1) what is "axes();"?
- (2) what is "get();"?
- (3) what is "'gca';"?
- (4) why do we use this "'visible','off'"?
- (5) again why do we use this "axes('position',get(gca,'position'),'visible','off');"?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!