Saving pdf's inside loop

조회 수: 1 (최근 30일)
Jules Ray
Jules Ray 2014년 9월 20일
편집: Jules Ray 2014년 9월 21일
Hello guys:
i have a script to create subplots, and divide them into different pages, however i'm unable to save these pages as pdf inside the loop, here is the code:
station='CONT';
ps=8;% plots per page
np=nim; %number of plots
for it=1:np
xt=rem(it-1,ps)+1;
if xt==1
figure;
end
ax1=subplot(4,2,xt);
xlim(Xll(it,:)); %xlimits, come from figure structure
ylim(Yll(it,:)); %ylimits, come from figure structure
copyobj(allchild(get(h1(it),'CurrentAxes')),ax1);
%check this is NOT WORKING ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡
fout = sprintf('%s_DR_%u.pdf',station,idx);
saveas(gcf,fout,'pdf');
end
thanxs in advance for any idea

답변 (1개)

Jan
Jan 2014년 9월 21일
"NOT WORKING" is not useful to explain what happens. Do you get an error message? Perhaps this message contains the information that the variable "idx" is not defined? Perhaps you want "it" to appear inside the name of the file?
  댓글 수: 1
Jules Ray
Jules Ray 2014년 9월 21일
편집: Jules Ray 2014년 9월 21일
no, instead of save one pdf for each subplot, just save twice the last subplot.... the question is where to put the saveas line to get one pdf for each loop...

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by