File: get_mean_no_globals.m

package info (click to toggle)
dynare 6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 67,632 kB
  • sloc: cpp: 79,090; ansic: 28,916; objc: 12,430; yacc: 4,528; pascal: 1,993; lex: 1,441; sh: 1,121; python: 634; makefile: 626; lisp: 163; xml: 18
file content (76 lines) | stat: -rw-r--r-- 2,595 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
function y0 = get_mean_no_globals(M_, oo_, options_, varargin)
% function y0 = get_mean_no_globals(M_, oo_, options_, varargin)
% returns the mean of a variable identified by its name
%
% INPUTS:
%   M_                  [structure] describing the model
%   oo_                 [structure] storing the results
%   options_            [structure] describing the options
%   vargargin           inputs containing
%                       - vname1, vname2, ... :  list of variable names
%                       - order: if integer 1 or 2, optionally last input can trigger the order
%                           at which steady state is computed
%
% OUTPUTS
%   y0:      mean values
%
% SPECIAL REQUIREMENTS
%   none

% Copyright © 2019-2023 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 <https://www.gnu.org/licenses/>.

if ~isempty(regexp(varargin{end},'\d','ONCE')) && isempty(regexp(varargin{end},'\D','ONCE'))
    order=eval(varargin{end});
    nvars=length(varargin)-1;
else
    order=1;
    nvars=length(varargin);
end
if order==1
    if isfield(oo_,'dr') && isfield(oo_.dr,'ys')
        ys_=oo_.dr.ys;
    else
        ys_ = oo_.steady_state;
        ys_ = evaluate_steady_state(ys_,[oo_.exo_steady_state; oo_.exo_det_steady_state],M_,options_,true);
    end
elseif order==2
    if isfield(oo_,'dr') && isfield(oo_.dr,'ys')
        ys_=oo_.dr.ys;
        if ~isfield(oo_.dr,'ghs2')
            error('get_mean: ghs2 needs to be present in oo_ to compute mean at order=2')
        else
            ys_(oo_.dr.order_var)=ys_(oo_.dr.order_var)+oo_.dr.ghs2./2;
        end
    else
        error('get_mean: decision rules need to be present in oo_ to compute mean') 
    end
else
    error('get_mean: order>2 not implemented')
end

mfys=NaN(nvars,1);
for j=1:nvars
    endo_index=find(strcmp(varargin{j},M_.endo_names));
    if isempty(endo_index)
        error('get_mean: unknown variables %s requested',varargin{j})
    else
    mfys(j) = find(strcmp(varargin{j},M_.endo_names));
    end
end

y0 = ys_(mfys);