Automatically Change Variable in a Plot
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi Guys,
I have some variables (D1,D2,D3,...) and I want to draw the graph for them .Since, number of variables are so much, I want to define the plot funtion in such a way that the variable changes automatically. My initial suggestion was to use eval function as follows: plot(eval(['D' num2str(j)])(:,11),D11(:,1),'linewidth',1) But id doesnt work. Could you please let me know any suggestion to solve it.
Cheers,
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2014년 4월 22일
for k=1:3
eval(sprintf('plot(D%d)',k))
hold on
end
댓글 수: 3
Azzi Abdelmalek
2014년 4월 22일
Jamaledin, using several variables is not a good idea. you can create one variable
v=[D1;D2;...]
or a cell array
v={D1 D2 ...]
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!