필터 지우기
필터 지우기

Plotting a number of Charts in a different figures !

조회 수: 1 (최근 30일)
Ahmed
Ahmed 2013년 2월 10일
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

채택된 답변

Azzi Abdelmalek
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 CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by