Iterative legend for multple curves on the same plot
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Fabio
el 31 de Mayo de 2014
Respondida: Thomas
el 1 de Oct. de 2014
Hi
I have a 96xn matrix A where number of rows represent the quarters (of an hour) in a day.
I plot it in this way plot(x,A) where x=0.25:0.25:24.
How can I make an iterative legend? I would like to have a legend as curve 1, curve 2, ...... curve n and when n is very high it is very boring.
Thank you
0 comentarios
Respuesta aceptada
Sara
el 31 de Mayo de 2014
you can do:
txt = cell(n,1);
for i = 1:n
txt{i}= sprintf('curve %i',i);
end
legend(txt)
0 comentarios
Más respuestas (1)
Thomas
el 1 de Oct. de 2014
...and here is the trick to do it in one line:
legend(cellstr(int2str([17:28]')))
will just display the numbers in the array [17:28] in this case 17, 18, 19,... (The order of dimensions of [17:28] matters! Therefore in this case [17:28]' is used.
0 comentarios
Ver también
Categorías
Más información sobre Legend en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!