Filter löschen
Filter löschen

How do I add legends to my plot?

3 Ansichten (letzte 30 Tage)
Macarena Santillan
Macarena Santillan am 9 Feb. 2022
Kommentiert: Star Strider am 9 Feb. 2022
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 (:

Akzeptierte Antwort

Star Strider
Star Strider am 9 Feb. 2022
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 Kommentare
Macarena Santillan
Macarena Santillan am 9 Feb. 2022
The function handles worked! Thank you (:
Star Strider
Star Strider am 9 Feb. 2022
As always, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Voss
Voss am 9 Feb. 2022
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);

Community Treasure Hunt

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

Start Hunting!

Translated by