Plotting a number of Charts in a different figures !
1 回表示 (過去 30 日間)
古いコメントを表示
if true
PDD(i,:)=[dp(i1,j1,k1),PD(i1,j1,k1)];
hold on
for k3=1:8:104
plot(PDD(k3:k3+7,1),PDD(k3:k3+7,2)); %1 st Curve
end
end
this in my Code which can plot 13 plot in one chart according to my data,
now what i am trying to make is to repeat this code for 11 different plots and each one i need it in a different figure, how i can make this ?
Thx in Advance
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 2 月 10 日
for k3=1:8:104
figure
plot(PDD(k3:k3+7,1),PDD(k3:k3+7,2)); %1 st Curve
end
その他の回答 (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!