Replaced pac.update.equation() by pac.update.expectation().

time-shift
Stéphane Adjemian(Charybdis) 2018-06-21 18:47:57 +02:00
parent f84a6fefb7
commit 45115e1172
2 changed files with 38 additions and 4 deletions

View File

@ -1,9 +1,9 @@
function equation(pacname)
% Updates the parameters of a PAC equation.
% Updates the parameters of a PAC expectation.
%
% INPUTS
% - pacname [string] Name of the pac equation.
% - pacname [string] Name of the pac expectation.
%
% OUTPUTS
% - none
@ -28,6 +28,7 @@ function equation(pacname)
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
global M_ oo_
warning('Function pac.update.equation() is deprecated. Use pac.update.expectation() instead.')
skipline()
M_ = pac.update.parameters(pacname, M_, oo_);
pac.update.expectation(pacname);

View File

@ -0,0 +1,33 @@
function expectation(pacname)
% Updates the parameters of a PAC expectation.
%
% INPUTS
% - pacname [string] Name of the pac expectation.
%
% OUTPUTS
% - none
%
% SPECIAL REQUIREMENTS
% none
% Copyright (C) 2018 Dynare Team
%
% This file is part of Dynare.
%
% Dynare is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% Dynare is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
global M_ oo_
M_ = pac.update.parameters(pacname, M_, oo_);