필터 지우기
필터 지우기

how can i have three plots on one graph and save all three plots using one name

조회 수: 1 (최근 30일)
I have a loop with four files, how can i have three plots on one graph and save all three plots using each filename? so i get four different plot with three plots on each. i tried
h=plot(f,x)
hold on
h=plot(f,y)
hold on
h=plot(f,z)
saveas(h,name,'jpg')
but i get all plots on the same graph for all four files i.e 12 plots on one graph

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2012년 8월 12일
편집: Azzi Abdelmalek 2012년 8월 12일
%for example
f=0:0.1:10;n=length(t);x=rand(4,n);y=rand(4,n);z=rand(4,n);
for k=1:4
h=plot(f,x(k,:));
hold on;h=plot(f,y(k,:));
hold on;h=plot(f,z(k,:))
name=sprintf('fic%d',k)
saveas(h,name,'jpg')
close
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