Effacer les filtres
Effacer les filtres

How to deal with legend for multiple curves in one figure?

23 vues (au cours des 30 derniers jours)
Haitham AL Satai
Haitham AL Satai le 20 Juil 2022
Commenté : Voss le 20 Juil 2022
I have a multiple curevs in one figure and I wanna add a legend to each curve.
So, instead of data1, data2, data3, data4, and data5, I want to replace them with
phi = 0 & psi = 0
phi = psi
phi = [0,5,10,15,20,25,30] & psi = 0
phi = 0 & psi = [0,5,10,15,20,25,30]
phi = [0,5,10,15,20,25,30] & psi = [0,5,10,15,20,25,30]
I tried many times, but I could not reach to solution. May I get an assistance please?

Réponse acceptée

Voss
Voss le 20 Juil 2022
Modifié(e) : Voss le 20 Juil 2022
One way is to set the DisplayName of each line when you plot it:
names = {
'phi = 0 & psi = 0'
'phi = psi'
'phi = [0,5,10,15,20,25,30] & psi = 0'
'phi = 0 & psi = [0,5,10,15,20,25,30]'
'phi = [0,5,10,15,20,25,30] & psi = [0,5,10,15,20,25,30]'
};
hold on % do "hold on" before you plot
for ii = 1:5
plot(rand(1,10),rand(1,10),'DisplayName',names{ii}); % (plotting random data because I don't have your data)
end
xlabel('X (m)');
ylabel('Received power (dBm)');
legend();
  4 commentaires
Haitham AL Satai
Haitham AL Satai le 20 Juil 2022
@Voss I accepted your answer sir. Thanks a lot.
Voss
Voss le 20 Juil 2022
Thank you!

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by