필터 지우기
필터 지우기

How do I add legends to my plot?

조회 수: 3 (최근 30일)
Macarena Santillan
Macarena Santillan 2022년 2월 9일
댓글: Star Strider 2022년 2월 9일
Hello I have a code to plot a couple of line sin different colors and I wanted to add a nox with the name of each function but for some reason the names are being displayed twice.
Does anyone know why this happens or how this can be fixed?
Thank you (:

채택된 답변

Star Strider
Star Strider 2022년 2월 9일
There are apparently two lines for every channel. There are two options:
The first is to simply plot the first row rather than both rows:
plot(Ch1(1,4:end), 'g', 'DisplayName','Channel 1')
the second is to return a handle from each plot call:
C1h = plot(Ch1(1,4:end), 'g', 'DisplayName','Channel 1');
and then in the legend call, provide only one element for each plot:
figure
Ch1h = plot(rand(10,2),'g','DisplayName','First Line');
hold on
Ch2h = plot(rand(10,2),'m','DisplayName','Second Line');
hold off
legend([Ch1h(1),Ch2h(1)], 'Location','best')
I cannot write exact cold without your data, however one of these approaches should work.
.
  댓글 수: 2
Macarena Santillan
Macarena Santillan 2022년 2월 9일
The function handles worked! Thank you (:
Star Strider
Star Strider 2022년 2월 9일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Voss
Voss 2022년 2월 9일
Could be because each call to plot() creates 2 lines. Check it out:
plot(magic(2),'b','DisplayName','Magic');
legend()
You can avoid this by returning the line objects from plot() and making the legend based on only the first one from each call to plot().
h = plot(magic(2),'b','DisplayName','Magic');
legend(h(1));
Or, in a situation more similar to your own:
h = [];
new_h = plot(magic(2),'g','DisplayName','Magic 1');
h(end+1) = new_h(1);
hold on
new_h = plot(magic(2)-1,'m','DisplayName','Magic 2');
h(end+1) = new_h(1);
new_h = plot(magic(2)+1,'r','DisplayName','Magic 3');
h(end+1) = new_h(1);
new_h = plot(inv(magic(2)),'b','DisplayName','Magic 4');
h(end+1) = new_h(1);
legend(h);

카테고리

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