Added output to get_prior_info (non empty iff info=1).

time-shift
Stéphane Adjemian (Charybdis) 2012-09-21 22:13:19 +02:00
parent e552b0c0e0
commit 233d0ae0d2
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
function get_prior_info(info,plt_flag) function results = get_prior_info(info,plt_flag)
% Computes various prior statistics. % Computes various prior statistics.
% %
% INPUTS % INPUTS
@ -37,6 +37,9 @@ if nargin==1
plt_flag = 1; plt_flag = 1;
end end
% Initialize returned variable.
results = [];
changed_qz_criterium_flag = 0; changed_qz_criterium_flag = 0;
if isempty(options_.qz_criterium) if isempty(options_.qz_criterium)
options_.qz_criterium = 1+1e-9; options_.qz_criterium = 1+1e-9;