%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%	This m.file is to define set of parameters for main_final.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

param_set_baseline = [ 
	1.0025    2/3         0.2     0.75        0.5 ...
	0.99      0.02        3       2/3         75 ...
	0.73      0.53        0.93    0           0.95 ...
	0.95      0.7         0.9     0.99        0.005 ...
	0.004     0.003       0       0.0005      0.01];
	
%	(01) DZbar		(02) eta		(03) theta		(04) xi				(05) IES
%	(06) betatilde	(07) delta		(08) LMax		(09) Frisch			(10) CRRA
%	(11) taylrho	(12) taylpi		(13) tayly		(14) piBar			(15) rhoa
%	(16) rhog		(17) rhoinflavg	(18) rhoz		(19) rhopistar		(20) sigmaa
%	(21) sigmag		(22) sigmai		(23) sigmaz		(24) sigmapistar	(25) gssload

% 1) CRRA 
	col = 0;
	for CRRA = 0:20:200
		col = col + 1;
		param_set_CRRA(col,:) = param_set_baseline;
		param_set_CRRA(col,10) = CRRA;
	end

% 2) Taylor rule (with rhor = baseline)
	col = 0;
	for taylpi = 0:0.3:3
		col = col + 1;
		param_set_taylpi(col,:) = param_set_baseline;
		param_set_taylpi(col,12) = taylpi;
	end
	col = 0;
	for tayly = 0:0.3:3
		col = col + 1;
		param_set_tayly(col,:) = param_set_baseline;
		param_set_tayly(col,13) = tayly;
	end

% 3) Taylor rule (with rhor = 0.95, very persistent)

	col = 0;
	for taylpi = 0.05:0.05:0.5
		col = col + 1;
		param_set_taylpi_95(col,:) = param_set_baseline;
		param_set_taylpi_95(col,11) = 0.95;
		param_set_taylpi_95(col,12) = taylpi;
		param_set_taylpi_95(col,13) = 0;

    end
    
	col = 0;
	for tayly = 0.05:0.05:0.5
		col = col + 1;
		param_set_tayly_95(col,:) = param_set_baseline;
		param_set_tayly_95(col,11) = 0.95;
		param_set_tayly_95(col,12) = 0;
		param_set_tayly_95(col,13) = tayly;
    end


%% Combine param_set (and index)
	param_set =[
		param_set_baseline		% col 01
		param_set_CRRA			% col 02-12 (11)
		param_set_taylpi		% col 13-23 (11)
		param_set_tayly			% col 24-34 (11)
		param_set_taylpi_95		% col 35-45 (11) % with rho=95
		param_set_tayly_95		% col 46-56 (11) % with rho=95
	];   

clear col CRRA taylpi tayly param_set_*
