Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Including legends for plots under the FOR LOOP

1 visualización (últimos 30 días)
Natnael Hamda
Natnael Hamda el 4 de Mayo de 2012
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I would like to plot a figure with a for loop and want to include the legends for each single plot; any one with the help, here is the code
A = 100;
nr = length(t);
nc = length (K);
X = zeros ( nr , nc);
for i = 1 : nr for j = 1:nc
X (i,j) = A .* (1 - exp(- K (j) .* t (i)));
end
end
for i = 1 : nc
plot(X (:,i))
hold on
end
Is it possible include the legend inside the for loop ?

Respuestas (0)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by