Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

Including legends for plots under the FOR LOOP

1 view (last 30 days)
Natnael Hamda
Natnael Hamda on 4 May 2012
Closed: MATLAB Answer Bot on 20 Aug 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 ?

Answers (0)

This question is closed.

Tags

Community Treasure Hunt

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

Start Hunting!