v4 PosteriorIRF.m: changed ifil into NumberOfIRFfiles

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@728 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
michel 2006-04-29 17:23:51 +00:00
parent c3af16b444
commit e10e3c7517
1 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ try delete([MhDirectoryName '/' M_.fname '_IRFs*']);
catch disp('No _IRFs files to be deleted!')
end
irun = 0;
ifil = 1;
NumberOfIRFfiles = 1;
if strcmpi(type,'posterior')
h = waitbar(0,'Bayesian (posterior) IRFs...');
else
@ -66,13 +66,13 @@ for b=1:B
if b == B
stock_irf = stock_irf(:,:,:,1:irun);
end
save([MhDirectoryName '/' M_.fname '_irf' int2str(ifil)],'stock_irf');
ifil = ifil+1;
save([MhDirectoryName '/' M_.fname '_irf' int2str(NumberOfIRFfiles)],'stock_irf');
NumberOfIRFfiles = NumberOfIRFfiles+1;
irun = 0;
end
waitbar(b/B,h);
end
ifil = ifil-1;
NumberOfIRFfiles = NumberOfIRFfiles-1;
close(h);
ReshapeMatFiles('irf')