header updated

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1583 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
assia 2008-01-11 16:01:00 +00:00
parent 884ca1c35f
commit 9d7af648e1
1 changed files with 23 additions and 2 deletions

View File

@ -1,6 +1,27 @@
% Copyright (C) 2004 Michel Juillard
%
function [m,s,p1,p2] = uniform_specification(m,s,p3,p4)
% function [m,s,p1,p2] = uniform_specification(m,s,p3,p4)
% Specification of the uniform density function parameters
%
% INPUTS
% m: mean
% s: standard deviation
% p3: lower bound
% p4: upper bound
% OUTPUTS
% m: mean
% s: standard deviation
% p1: lower bound
% p2: upper bound
%
% SPECIAL REQUIREMENTS
% none
%
% part of DYNARE, copyright Dynare Team (2004-2008)
% Gnu Public License.
if ~(isnan(p3) | isnan(p4))
p1 = p3;
p2 = p4;