Including legends for plots under the FOR LOOP
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
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 ?
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!