Skip to content
Snippets Groups Projects
Verified Commit b6619b34 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Remove unused variable.

parent fef466ef
No related branches found
No related tags found
No related merge requests found
...@@ -83,7 +83,7 @@ switch type ...@@ -83,7 +83,7 @@ switch type
case 'conditional decomposition' case 'conditional decomposition'
generic_prior_data_file_name = 'PriorConditionalVarianceDecomposition'; generic_prior_data_file_name = 'PriorConditionalVarianceDecomposition';
otherwise otherwise
disp(['This feature is not yet implemented!']) disp('This feature is not yet implemented!')
end end
CheckPath('prior/moments',M_.dname); CheckPath('prior/moments',M_.dname);
pdfinfo = dir([ M_.dname '/prior/' generic_prior_data_file_name '*']); pdfinfo = dir([ M_.dname '/prior/' generic_prior_data_file_name '*']);
...@@ -95,8 +95,7 @@ if isempty(pdfinfo) ...@@ -95,8 +95,7 @@ if isempty(pdfinfo)
return return
else else
number_of_the_last_prior_data_file = length(pdfinfo); number_of_the_last_prior_data_file = length(pdfinfo);
name_of_the_last_prior_data_file = pdinfo(end).name; pdfdate = pdinfo(number_of_the_last_prior_data_file).datenum;
pdfdate = pdinfo(end).datenum;
% /!\ REMARK /!\ % /!\ REMARK /!\
% The user can change the model or the value of a calibrated % The user can change the model or the value of a calibrated
% parameter without changing the prior. In this case the (prior) % parameter without changing the prior. In this case the (prior)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment