1function options = set_default_initial_condition_decomposition_options(options)
2%function options = set_default_initial_condition_decomposition_options(options)
3% sets the default options for prior_shock_decomposition
4%
5% INPUTS
6%    options
7%
8% OUTPUTS
9%    options
10%
11% SPECIAL REQUIREMENTS
12%    none
13
14% Copyright (C) 2017-2019 Dynare Team
15%
16% This file is part of Dynare.
17%
18% Dynare is free software: you can redistribute it and/or modify
19% it under the terms of the GNU General Public License as published by
20% the Free Software Foundation, either version 3 of the License, or
21% (at your option) any later version.
22%
23% Dynare is distributed in the hope that it will be useful,
24% but WITHOUT ANY WARRANTY; without even the implied warranty of
25% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26% GNU General Public License for more details.
27%
28% You should have received a copy of the GNU General Public License
29% along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
30
31options.initial_condition_decomp.colormap = '';
32options.initial_condition_decomp.nodisplay = false;
33options.initial_condition_decomp.graph_format = 'eps';
34options.initial_condition_decomp.fig_name = '';
35options.initial_condition_decomp.detail_plot = false;
36options.initial_condition_decomp.init2shocks = [];
37options.initial_condition_decomp.steadystate = false;
38options.initial_condition_decomp.with_epilogue = options.shock_decomp.with_epilogue;
39options.initial_condition_decomp.write_xls = false;
40options.initial_condition_decomp.type = '';
41options.initial_condition_decomp.plot_init_date = [];
42options.initial_condition_decomp.plot_end_date = [];
43options.initial_condition_decomp.diff = false;
44options.initial_condition_decomp.flip = false;
45options.initial_condition_decomp.max_nrows = 6;
46end
47