How to dynamically create and update a legend ?

Hi to all,
I have a simple script that:
  1. loads a *.mat file with a specific name and which is placed in the project directory
  2. plots a figure according to data/variables within the same *.mat file
the above two steps are cycled (inside a "for") and repeated 5 times. I use "hold on" so as to plot the 5 different figures inside the same window/plot.
At the end of my script I get a single window with 5 overlayed plots...which are unfortunately quite tricky to identify one from the other.
Script demo as follows:
for h=1:5;
filename = sprintf('file_%03d.mat', h);
load(filename);
cdfplot (file_gnd);
hold on;
So, I would like to add a legend and give a name to the different curves. The name in the legend should be simply the name of the *.mat file I load before and I am getting data from. So, in my example I should have a legend with labels "file_001.mat", "file_002.mat" and so on (according to 'h' range). My idea would be to create the legend inside the cycle and then populate it for each run of the cycle but it is not working since I am not able to give "legend" a dynamic parameter which is a function of 'filename' (and thus 'h' in my case).
Any idea ?

 Respuesta aceptada

Majid Farzaneh
Majid Farzaneh el 24 de Mayo de 2018
Editada: Majid Farzaneh el 24 de Mayo de 2018
Hi, You don't have to create legend dynamically, Do it out of loop like this:
for h=1:5;
filename = sprintf('file_%03d.mat', h);
load(filename);
cdfplot (file_gnd);
hold on;
end
legend('file_001.mat', 'file_001.mat', 'file_001.mat', 'file_001.mat', 'file_001.mat');
legend assigns labels respectively. If you are not sure about this, you can test this code:
x=0:0.01:2*pi;
plot(sin(x));
hold on
plot(cos(x));
hold on
plot(sqrt(x))
legend('sin','cos','sqrt')

4 comentarios

Majid Farzaneh
Majid Farzaneh el 24 de Mayo de 2018
Editada: Majid Farzaneh el 24 de Mayo de 2018
But if you persist to do it dynamically you can store every string of the loop in a cell array and then out of loop call legend with the cell array:
for h=1:5;
filename = sprintf('file_%03d.mat', h);
M{h}=filename;
load(filename);
cdfplot (file_gnd);
hold on;
end
legend(M);
Maximilian Arpaio
Maximilian Arpaio el 27 de Mayo de 2018
Storing every string in a cell array is the answer that fits my need. I had to adapt the idea to my script since the loop does not go exactly from 1 to 5 but it depends on a specific situation ( i.e even from 50 to 179 with 2.5 steps) but now it works. Thanks man !
Majid Farzaneh
Majid Farzaneh el 28 de Mayo de 2018
You're welcome
Hari Krishnan K P
Hari Krishnan K P el 22 de Jul. de 2020
Great idea..!!!! @Majid Farzaneh

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.

Productos

Versión

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by