Derive Distributions for For+Inf+Borr+Save+RShock Risky + Safe Asset Interpolated-Percentage (Wrapper)

back to Fan's Dynamic Assets Repository Table of Content.

Contents

function [result_map] = ff_ipwkbzr_fibs_ds_wrapper(varargin)

FF_IPWKBZ_FIBS_DS_WRAPPER finds the stationary asset distributions

This is a warpper function.

Default

  1. it_subset = 5 is basic invoke quick test
  2. it_subset = 6 is invoke full test
  3. it_subset = 7 is profiling invoke
  4. it_subset = 8 is matlab publish
  5. it_subset = 9 is invoke operational (only final stats) and coh graph
it_param_set = 8;
[param_map, support_map] = ffs_ipwkbzr_fibs_set_default_param(it_param_set);

Change Parameter to Main Options

% Set Parameter Types
st_param_which = 'default';

if (ismember(st_param_which, ["default"]))
%     param_map('it_maxiter_val') = 50;
    % default
%     param_map('it_w_perc_n') = 25;
%     param_map('it_ak_perc_n') = param_map('it_w_perc_n');
%     param_map('it_coh_bridge_perc_n') = param_map('it_w_perc_n');
%
%     param_map('fl_coh_interp_grid_gap') = 0.1;
%     param_map('it_c_interp_grid_gap') = 10^-4;
%     param_map('fl_w_interp_grid_gap') = 0.1;
%
%     param_map('it_z_wage_n') = 7;
%     param_map('fl_z_r_infbr_n') = 7;
%     param_map('it_z_n') = param_map('it_z_wage_n') * param_map('fl_z_r_infbr_n');

elseif ismember(st_param_which, ["ff_ipwkbzr_ds_wrapper", "ff_ipwkbzrr_ds_wrapper"])

    param_map('fl_r_save') = 0.025;

    param_map('fl_r_fsv') = 0.025;
    param_map('fl_r_fbr') = 1.000;
    param_map('bl_bridge') = false;
    param_map('it_coh_bridge_perc_n') = 1;

    if ismember(st_param_which, ["ff_ipwkbzr_ds_wrapper"])

        % ff_ipwkbzr_evf default
        param_map('fl_z_r_borr_min') = 0.025;
        param_map('fl_z_r_borr_max') = 0.025;
        param_map('fl_z_r_borr_n') = 1;

    end

    param_map('it_z_n') = param_map('it_z_wage_n') * param_map('fl_z_r_borr_n');

end

Adjust Parametesr

% Note: param_map and support_map can be adjusted here or outside to override defaults
% param_map('it_w_perc_n') = 50;
% param_map('it_ak_perc_n') = param_map('it_w_perc_n');
% param_map('it_z_n') = 15;
% param_map('fl_coh_interp_grid_gap') = 0.025;
% param_map('it_c_interp_grid_gap') = 0.001;
% param_map('fl_w_interp_grid_gap') = 0.25;
% param_map('it_w_perc_n') = 100;
% param_map('it_ak_perc_n') = param_map('it_w_perc_n');
% param_map('it_z_n') = 11;
% param_map('fl_coh_interp_grid_gap') = 0.1;
% param_map('it_c_interp_grid_gap') = 10^-4;
% param_map('fl_w_interp_grid_gap') = 0.1;
% param_map('it_w_perc_n') = 100;
% param_map('fl_r_save') = 0.025;
% param_map('fl_c_min') = 0.02;

Set Distribution Derivation Types

% param_map('st_analytical_stationary_type') = 'loop';
% param_map('st_analytical_stationary_type') = 'vector';
param_map('st_analytical_stationary_type') = 'eigenvector';

Generate Grids

% get armt and func map
params_len = length(varargin);
if params_len <= 2
    [armt_map, func_map] = ffs_ipwkbzr_fibs_get_funcgrid(param_map, support_map); % 1 for override
    default_params = {param_map support_map armt_map func_map};
end

Parse Parameters 1

% if varargin only has param_map and support_map,
params_len = length(varargin);
[default_params{1:params_len}] = varargin{:};
param_map = [param_map; default_params{1}];
support_map = [support_map; default_params{2}];
if params_len >= 1 && params_len <= 2
    % If override param_map, re-generate armt and func if they are not
    % provided
    [armt_map, func_map] = ffs_ipwkbzr_fibs_get_funcgrid(param_map, support_map);
else
    % Override all
    armt_map = default_params{3};
    func_map = default_params{4};
end

% if profile, profile DP + Dist here
support_map('bl_profile_dist') = false;

% append function name
st_func_name = 'ff_ipwkbzr_fibs_ds_wrapper';
support_map('st_profile_name_main') = [st_func_name support_map('st_profile_name_main')];
support_map('st_mat_name_main') = [st_func_name support_map('st_mat_name_main')];
support_map('st_img_name_main') = [st_func_name support_map('st_img_name_main')];

Parse Parameters

% param_map
params_group = values(param_map, {'st_analytical_stationary_type'});
[st_analytical_stationary_type] = params_group{:};

% support_map
params_group = values(support_map, ...
    {'st_profile_path', 'st_profile_prefix', 'st_profile_name_main', 'st_profile_suffix','bl_time'});
[st_profile_path, st_profile_prefix, st_profile_name_main, st_profile_suffix, bl_time] = params_group{:};

Start Profiler and Timer

Start Profile

if (it_param_set == 7)
    close all;
    profile off;
    profile on;
end

% Start Timer
if (bl_time)
    tic;
end

Solve DP

result_map = ff_ipwkbzr_fibs_vf_vecsv(param_map, support_map, armt_map, func_map);
----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: SUPPORT_MAP
----------------------------------------
  Map with properties:

        Count: 47
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 1 ; key = bl_display ; val = false
pos = 2 ; key = bl_display_defparam ; val = true
pos = 3 ; key = bl_display_dist ; val = false
pos = 4 ; key = bl_display_evf ; val = false
pos = 5 ; key = bl_display_final ; val = false
pos = 6 ; key = bl_display_final_dist ; val = true
pos = 7 ; key = bl_display_final_dist_detail ; val = true
pos = 8 ; key = bl_display_funcgrids ; val = false
pos = 9 ; key = bl_display_infbridge ; val = false
pos = 10 ; key = bl_display_minccost ; val = false
pos = 11 ; key = bl_graph ; val = true
pos = 12 ; key = bl_graph_coh_t_coh ; val = true
pos = 13 ; key = bl_graph_evf ; val = false
pos = 14 ; key = bl_graph_forinf_discrete ; val = true
pos = 15 ; key = bl_graph_forinf_pol_lvl ; val = true
pos = 16 ; key = bl_graph_forinf_pol_pct ; val = true
pos = 17 ; key = bl_graph_funcgrids ; val = false
pos = 18 ; key = bl_graph_funcgrids_detail ; val = false
pos = 19 ; key = bl_graph_onebyones ; val = true
pos = 20 ; key = bl_graph_pol_lvl ; val = false
pos = 21 ; key = bl_graph_pol_pct ; val = false
pos = 22 ; key = bl_graph_val ; val = false
pos = 23 ; key = bl_img_save ; val = false
pos = 24 ; key = bl_mat ; val = false
pos = 25 ; key = bl_post ; val = true
pos = 26 ; key = bl_profile ; val = false
pos = 27 ; key = bl_profile_dist ; val = false
pos = 28 ; key = bl_time ; val = false
pos = 29 ; key = it_display_every ; val = 20
pos = 30 ; key = it_display_final_colmax ; val = 12
pos = 31 ; key = it_display_final_rowmax ; val = 100
pos = 32 ; key = it_display_summmat_colmax ; val = 5
pos = 33 ; key = it_display_summmat_rowmax ; val = 5
pos = 34 ; key = st_img_name_main ; val = ff_ipwkbzr_fibs_vf_vecsvff_ipwkbzr_fibs_ds_wrapper_default
pos = 35 ; key = st_img_path ; val = C:/Users/fan/CodeDynaAsset//m_fibs//m_ipwkbzr_solve/img/
pos = 36 ; key = st_img_prefix ; val = 
pos = 37 ; key = st_img_suffix ; val = _p8.png
pos = 38 ; key = st_mat_name_main ; val = ff_ipwkbzr_fibs_vf_vecsvff_ipwkbzr_fibs_ds_wrapper_default
pos = 39 ; key = st_mat_path ; val = C:/Users/fan/CodeDynaAsset//m_fibs//m_ipwkbzr_solve/mat/
pos = 40 ; key = st_mat_prefix ; val = 
pos = 41 ; key = st_mat_suffix ; val = _p8
pos = 42 ; key = st_matimg_path_root ; val = C:/Users/fan/CodeDynaAsset//m_fibs/
pos = 43 ; key = st_profile_name_main ; val = ff_ipwkbzr_fibs_vf_vecsvff_ipwkbzr_fibs_ds_wrapper_default
pos = 44 ; key = st_profile_path ; val = C:/Users/fan/CodeDynaAsset//m_fibs//m_ipwkbzr_solve/profile/
pos = 45 ; key = st_profile_prefix ; val = 
pos = 46 ; key = st_profile_suffix ; val = _p8
pos = 47 ; key = st_title_prefix ; val = 
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                    i     idx    value
                                    __    ___    _____

    bl_display                       1     1        0 
    bl_display_defparam              2     2        1 
    bl_display_dist                  3     3        0 
    bl_display_evf                   4     4        0 
    bl_display_final                 5     5        0 
    bl_display_final_dist            6     6        1 
    bl_display_final_dist_detail     7     7        1 
    bl_display_funcgrids             8     8        0 
    bl_display_infbridge             9     9        0 
    bl_display_minccost             10    10        0 
    bl_graph                        11    11        1 
    bl_graph_coh_t_coh              12    12        1 
    bl_graph_evf                    13    13        0 
    bl_graph_forinf_discrete        14    14        1 
    bl_graph_forinf_pol_lvl         15    15        1 
    bl_graph_forinf_pol_pct         16    16        1 
    bl_graph_funcgrids              17    17        0 
    bl_graph_funcgrids_detail       18    18        0 
    bl_graph_onebyones              19    19        1 
    bl_graph_pol_lvl                20    20        0 
    bl_graph_pol_pct                21    21        0 
    bl_graph_val                    22    22        0 
    bl_img_save                     23    23        0 
    bl_mat                          24    24        0 
    bl_post                         25    25        1 
    bl_profile                      26    26        0 
    bl_profile_dist                 27    27        0 
    bl_time                         28    28        0 
    it_display_every                29    29       20 
    it_display_final_colmax         30    30       12 
    it_display_final_rowmax         31    31      100 
    it_display_summmat_colmax       32    32        5 
    it_display_summmat_rowmax       33    33        5 

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Strings in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                            i     idx
                            __    ___

    st_img_name_main         1    34 
    st_img_path              2    35 
    st_img_prefix            3    36 
    st_img_suffix            4    37 
    st_mat_name_main         5    38 
    st_mat_path              6    39 
    st_mat_prefix            7    40 
    st_mat_suffix            8    41 
    st_matimg_path_root      9    42 
    st_profile_name_main    10    43 
    st_profile_path         11    44 
    st_profile_prefix       12    45 
    st_profile_suffix       13    46 
    st_title_prefix         14    47 

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: ARMT_MAP
----------------------------------------
  Map with properties:

        Count: 45
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 1 ; key = ar_a ;rown= 1 ,coln= 772
ar_a :mu= 18.6145 ,sd= 22.347 ,min= -20 ,max= 57.2773
               zi_1_C1    zi_2_C2    zi_386_c386    zi_771_c771    zi_772_c772
               _______    _______    ___________    ___________    ___________

    zi_1_r1      -20       -19.9       18.538         57.177         57.277   

pos = 2 ; key = ar_a_meshk ;rown= 772 ,coln= 1
ar_a_meshk :mu= 18.6145 ,sd= 22.347 ,min= -20 ,max= 57.2773
                   zi_1_c1
                   _______

    zi_1_R1           -20 
    zi_2_R2         -19.9 
    zi_386_r386    18.538 
    zi_771_r771    57.177 
    zi_772_r772    57.277 

pos = 3 ; key = ar_a_meshk_ori ;rown= 125000 ,coln= 1
ar_a_meshk_ori :mu= -11.5107 ,sd= 10.6749 ,min= -20 ,max= 49.93
                         zi_1_c1
                         _______

    zi_1_R1                  -20
    zi_2_R2                  -20
    zi_62500_R62500      -19.995
    zi_124999_r124999    -18.504
    zi_125000_r125000     -19.93

pos = 4 ; key = ar_ak_perc ;rown= 1 ,coln= 50
ar_ak_perc :mu= 0.5 ,sd= 0.2969 ,min= 0.001 ,max= 0.999
               zi_1_C1    zi_2_C2     zi_25_c25    zi_49_c49    zi_50_c50
               _______    ________    _________    _________    _________

    zi_1_r1     0.001     0.021367     0.48982      0.97863       0.999  

pos = 5 ; key = ar_ameshk_tnext_with_r ;rown= 125000 ,coln= 5
ar_ameshk_tnext_with_r :mu= -12.1815 ,sd= 11.1121 ,min= -21.9 ,max= 51.1782
                         zi_1_c1    zi_2_c2    zi_3_c3    zi_4_c4    zi_5_c5
                         _______    _______    _______    _______    _______

    zi_1_R1                -20.5     -20.85      -21.2     -21.55      -21.9
    zi_2_R2                -20.5     -20.85      -21.2     -21.55      -21.9
    zi_62500_R62500      -20.495    -20.845    -21.195    -21.363     -21.46
    zi_124999_r124999    -18.967    -19.291    -19.615     -19.72    -19.727
    zi_125000_r125000    -20.428    -20.777    -21.126    -21.237    -21.253

pos = 6 ; key = ar_aplusk_mesh ;rown= 125000 ,coln= 1
ar_aplusk_mesh :mu= -3.0215 ,sd= 16.2704 ,min= -20 ,max= 50
                         zi_1_c1
                         _______

    zi_1_R1                  -20
    zi_2_R2                  -20
    zi_62500_R62500      -15.086
    zi_124999_r124999         50
    zi_125000_r125000         50

pos = 7 ; key = ar_coh_bridge_perc ;rown= 1 ,coln= 10
ar_coh_bridge_perc :mu= 0.5 ,sd= 0.33641 ,min= 0 ,max= 1
               zi_1_C1    zi_2_C2    zi_5_C5    zi_9_C9    zi_10_c10
               _______    _______    _______    _______    _________

    zi_1_r1       0       0.11111    0.44444    0.88889        1    

pos = 8 ; key = ar_forbrblk ;rown= 1 ,coln= 14
ar_forbrblk :mu= -9.2857 ,sd= 6.2163 ,min= -19 ,max= 0
               zi_1_C1    zi_2_C2    zi_7_C7    zi_13_c13    zi_14_c14
               _______    _______    _______    _________    _________

    zi_1_r1      -19       -17.5       -10         -1            0    

pos = 9 ; key = ar_forbrblk_r ;rown= 1 ,coln= 14
ar_forbrblk_r :mu= 0.065 ,sd= 2.8803e-17 ,min= 0.065 ,max= 0.065
               zi_1_C1    zi_2_C2    zi_7_C7    zi_13_c13    zi_14_c14
               _______    _______    _______    _________    _________

    zi_1_r1     0.065      0.065      0.065       0.065        0.065  

pos = 10 ; key = ar_interp_c_grid ;rown= 1 ,coln= 772572
ar_interp_c_grid :mu= 38.6486 ,sd= 22.3023 ,min= 0.02 ,max= 77.2773
               zi_1_C1    zi_2_C2    zi_386286_c386286    zi_772571_c772571    zi_772572_c772572
               _______    _______    _________________    _________________    _________________

    zi_1_r1     0.02      0.0201          38.649               77.277               77.277      

pos = 11 ; key = ar_interp_coh_grid ;rown= 1 ,coln= 772
ar_interp_coh_grid :mu= 18.6145 ,sd= 22.347 ,min= -20 ,max= 57.2773
               zi_1_C1    zi_2_C2    zi_386_c386    zi_771_c771    zi_772_c772
               _______    _______    ___________    ___________    ___________

    zi_1_r1      -20       -19.9       18.538         57.177         57.277   

pos = 12 ; key = ar_k_mesha ;rown= 772 ,coln= 1
ar_k_mesha :mu= 0 ,sd= 0 ,min= 0 ,max= 0
                   zi_1_c1
                   _______

    zi_1_R1           0   
    zi_2_R2           0   
    zi_386_r386       0   
    zi_771_r771       0   
    zi_772_r772       0   

pos = 13 ; key = ar_k_mesha_ori ;rown= 125000 ,coln= 1
ar_k_mesha_ori :mu= 8.4893 ,sd= 10.6749 ,min= 0 ,max= 69.93
                         zi_1_c1
                         _______

    zi_1_R1                   0 
    zi_2_R2                   0 
    zi_62500_R62500      4.9091 
    zi_124999_r124999    68.504 
    zi_125000_r125000     69.93 

pos = 14 ; key = ar_w_level ;rown= 1 ,coln= 700
ar_w_level :mu= 14.9786 ,sd= 20.2441 ,min= -20 ,max= 50
               zi_1_C1    zi_2_C2    zi_350_c350    zi_699_c699    zi_700_c700
               _______    _______    ___________    ___________    ___________

    zi_1_r1      -20       -19.9        14.9           49.9            50     

pos = 15 ; key = ar_w_level_full ;rown= 1 ,coln= 2500
ar_w_level_full :mu= -3.0215 ,sd= 16.2736 ,min= -20 ,max= 50
               zi_1_C1    zi_2_C2    zi_1250_c1250    zi_2499_c2499    zi_2500_c2500
               _______    _______    _____________    _____________    _____________

    zi_1_r1      -20       -19.9        -15.086           49.9              50      

pos = 16 ; key = ar_w_perc ;rown= 1 ,coln= 50
ar_w_perc :mu= 0.5 ,sd= 0.2969 ,min= 0.001 ,max= 0.999
               zi_1_C1    zi_2_C2     zi_25_c25    zi_49_c49    zi_50_c50
               _______    ________    _________    _________    _________

    zi_1_r1     0.001     0.021367     0.48982      0.97863       0.999  

pos = 17 ; key = ar_z_r_infbr ;rown= 1 ,coln= 5
ar_z_r_infbr :mu= 0.06 ,sd= 0.02767 ,min= 0.025 ,max= 0.095
               zi_1_c1    zi_2_c2    zi_3_c3    zi_4_c4    zi_5_c5
               _______    _______    _______    _______    _______

    zi_1_r1     0.025     0.0425      0.06      0.0775      0.095 

pos = 18 ; key = ar_z_r_infbr_mesh_wage_r1w2 ;rown= 1 ,coln= 75
ar_z_r_infbr_mesh_wage_r1w2 :mu= 0.06 ,sd= 0.024915 ,min= 0.025 ,max= 0.095
               zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
               _______    _______    _________    _________    _________

    zi_1_r1     0.025     0.0425       0.06        0.0775        0.095  

pos = 19 ; key = ar_z_r_infbr_mesh_wage_w1r2 ;rown= 1 ,coln= 75
ar_z_r_infbr_mesh_wage_w1r2 :mu= 0.06 ,sd= 0.024915 ,min= 0.025 ,max= 0.095
               zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
               _______    _______    _________    _________    _________

    zi_1_r1     0.025      0.025       0.06         0.095        0.095  

pos = 20 ; key = ar_z_r_infbr_prob ;rown= 1 ,coln= 5
ar_z_r_infbr_prob :mu= 0.2 ,sd= 0.34803 ,min= 0.00012164 ,max= 0.81093
                zi_1_c1       zi_2_c2     zi_3_c3     zi_4_c4    zi_5_c5
               __________    _________    ________    _______    _______

    zi_1_r1    0.00012164    0.0024328    0.024328    0.16219    0.81093

pos = 21 ; key = ar_z_wage ;rown= 1 ,coln= 15
ar_z_wage :mu= 1.1347 ,sd= 0.69878 ,min= 0.34741 ,max= 2.567
               zi_1_C1    zi_2_C2    zi_8_C8    zi_14_c14    zi_15_c15
               _______    _______    _______    _________    _________

    zi_1_r1    0.34741    0.40076    0.94436     2.2253        2.567  

pos = 22 ; key = ar_z_wage_mesh_r_infbr_r1w2 ;rown= 1 ,coln= 75
ar_z_wage_mesh_r_infbr_r1w2 :mu= 1.1347 ,sd= 0.67963 ,min= 0.34741 ,max= 2.567
               zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
               _______    _______    _________    _________    _________

    zi_1_r1    0.34741    0.34741     0.94436       2.567        2.567  

pos = 23 ; key = ar_z_wage_mesh_r_infbr_w1r2 ;rown= 1 ,coln= 75
ar_z_wage_mesh_r_infbr_w1r2 :mu= 1.1347 ,sd= 0.67963 ,min= 0.34741 ,max= 2.567
               zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
               _______    _______    _________    _________    _________

    zi_1_r1    0.34741    0.40076     0.94436      2.2253        2.567  

pos = 24 ; key = ar_z_wage_prob ;rown= 1 ,coln= 15
ar_z_wage_prob :mu= 0.066667 ,sd= 0.060897 ,min= 0.0027089 ,max= 0.16757
                zi_1_C1      zi_2_C2     zi_8_C8    zi_14_c14    zi_15_c15
               _________    _________    _______    _________    _________

    zi_1_r1    0.0027089    0.0069499    0.16757    0.0069499    0.0027089

pos = 25 ; key = cl_mt_coh_wkb_mesh_z_r_infbr ;rown= 125000 ,coln= 75
cl_mt_coh_wkb_mesh_z_r_infbr :mu= -1.4687 ,sd= 16.5862 ,min= -20.0564 ,max= 57.2773
                         zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                         _______    _______    _________    _________    _________

    zi_1_R1              -20.056    -20.056     -20.056      -20.056      -20.056 
    zi_2_R2              -20.056    -20.056     -20.056      -20.056      -20.056 
    zi_62500_R62500      -14.919    -14.824      -13.86      -11.589      -10.983 
    zi_124999_r124999     46.092     46.336      48.826       54.692       56.257 
    zi_125000_r125000     45.954       46.2      48.708       54.619       56.195 

pos = 26 ; key = it_ameshk_n ; val = 772
pos = 27 ; key = mt_bl_w_perc_mesh_interp_coh_grid_wneg ;rown= 50 ,coln= 772
mt_bl_w_perc_mesh_interp_coh_grid_wneg :mu= 0.60951 ,sd= 0.48787 ,min= 0 ,max= 1
                 zi_1_C1    zi_2_C2    zi_386_c386    zi_771_c771    zi_772_c772
                 _______    _______    ___________    ___________    ___________

    zi_1_R1       true       true         true           true           true    
    zi_2_R2       true       true         true           true           true    
    zi_25_r25     true       true         true           false          false   
    zi_49_r49     true       true         false          false          false   
    zi_50_r50     true       true         false          false          false   

pos = 28 ; key = mt_coh_bridge_perc_mesh_w_level_neg ;rown= 200 ,coln= 10
mt_coh_bridge_perc_mesh_w_level_neg :mu= 0.5 ,sd= 0.31922 ,min= 0 ,max= 1
                   zi_1_C1    zi_2_C2    zi_5_C5    zi_9_C9    zi_10_c10
                   _______    _______    _______    _______    _________

    zi_1_R1           0       0.11111    0.44444    0.88889        1    
    zi_2_R2           0       0.11111    0.44444    0.88889        1    
    zi_100_r100       0       0.11111    0.44444    0.88889        1    
    zi_199_r199       0       0.11111    0.44444    0.88889        1    
    zi_200_r200       0       0.11111    0.44444    0.88889        1    

pos = 29 ; key = mt_coh_w_perc_ratio_wneg ;rown= 23527 ,coln= 1
mt_coh_w_perc_ratio_wneg :mu= 0.72495 ,sd= 0.37217 ,min= 0 ,max= 1
                       zi_1_c1
                       _______

    zi_1_R1               0   
    zi_2_R2               0   
    zi_11764_r11764       1   
    zi_23526_r23526       1   
    zi_23527_r23527       1   

pos = 30 ; key = mt_coh_wkb ;rown= 772 ,coln= 75
mt_coh_wkb :mu= 18.6145 ,sd= 22.3328 ,min= -20 ,max= 57.2773
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1           -20        -20         -20          -20          -20  
    zi_2_R2         -19.9      -19.9       -19.9        -19.9        -19.9  
    zi_386_r386    18.538     18.538      18.538       18.538       18.538  
    zi_771_r771    57.177     57.177      57.177       57.177       57.177  
    zi_772_r772    57.277     57.277      57.277       57.277       57.277  

pos = 31 ; key = mt_coh_wkb_ori ;rown= 625000 ,coln= 15
mt_coh_wkb_ori :mu= -1.8516 ,sd= 16.7324 ,min= -21.4564 ,max= 57.2773
                         zi_1_C1    zi_2_C2    zi_8_C8    zi_14_c14    zi_15_c15
                         _______    _______    _______    _________    _________

    zi_1_R1              -20.056    -20.056    -20.056     -20.056      -20.056 
    zi_2_R2              -20.056    -20.056    -20.056     -20.056      -20.056 
    zi_312500_r312500    -15.619    -15.524     -14.56     -12.289      -11.683 
    zi_624999_r624999     45.332     45.576     48.066      53.932       55.497 
    zi_625000_r625000     45.129     45.375     47.883      53.793        55.37 

pos = 32 ; key = mt_interp_coh_grid_mesh_w_perc ;rown= 50 ,coln= 772
mt_interp_coh_grid_mesh_w_perc :mu= 18.6145 ,sd= 22.3329 ,min= -20 ,max= 57.2773
                 zi_1_C1    zi_2_C2    zi_386_c386    zi_771_c771    zi_772_c772
                 _______    _______    ___________    ___________    ___________

    zi_1_R1        -20       -19.9       18.538         57.177         57.277   
    zi_2_R2        -20       -19.9       18.538         57.177         57.277   
    zi_25_r25      -20       -19.9       18.538         57.177         57.277   
    zi_49_r49      -20       -19.9       18.538         57.177         57.277   
    zi_50_r50      -20       -19.9       18.538         57.177         57.277   

pos = 33 ; key = mt_interp_coh_grid_mesh_z ;rown= 772 ,coln= 75
mt_interp_coh_grid_mesh_z :mu= 18.6145 ,sd= 22.3328 ,min= -20 ,max= 57.2773
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1           -20        -20         -20          -20          -20  
    zi_2_R2         -19.9      -19.9       -19.9        -19.9        -19.9  
    zi_386_r386    18.538     18.538      18.538       18.538       18.538  
    zi_771_r771    57.177     57.177      57.177       57.177       57.177  
    zi_772_r772    57.277     57.277      57.277       57.277       57.277  

pos = 34 ; key = mt_interp_coh_grid_mesh_z_wage ;rown= 772 ,coln= 15
mt_interp_coh_grid_mesh_z_wage :mu= 18.6145 ,sd= 22.3335 ,min= -20 ,max= 57.2773
                   zi_1_C1    zi_2_C2    zi_8_C8    zi_14_c14    zi_15_c15
                   _______    _______    _______    _________    _________

    zi_1_R1           -20        -20        -20         -20          -20  
    zi_2_R2         -19.9      -19.9      -19.9       -19.9        -19.9  
    zi_386_r386    18.538     18.538     18.538      18.538       18.538  
    zi_771_r771    57.177     57.177     57.177      57.177       57.177  
    zi_772_r772    57.277     57.277     57.277      57.277       57.277  

pos = 35 ; key = mt_k ;rown= 50 ,coln= 2500
mt_k :mu= 8.4893 ,sd= 10.6749 ,min= 0 ,max= 69.93
                 zi_1_C1     zi_2_C2      zi_1250_c1250    zi_2499_c2499    zi_2500_c2500
                 _______    __________    _____________    _____________    _____________

    zi_1_R1         0       0.00010029      0.004914          0.0699             0.07    
    zi_2_R2         0        0.0021429         0.105          1.4936           1.4957    
    zi_25_r25       0         0.049122         2.407          34.238           34.287    
    zi_49_r49       0         0.098144         4.809          68.406           68.504    
    zi_50_r50       0          0.10019        4.9091           69.83            69.93    

pos = 36 ; key = mt_w_level_neg_mesh_coh_bridge_perc ;rown= 200 ,coln= 10
mt_w_level_neg_mesh_coh_bridge_perc :mu= -10.0215 ,sd= 5.7914 ,min= -20 ,max= -0.04298
                   zi_1_C1     zi_2_C2     zi_5_C5     zi_9_C9     zi_10_c10
                   ________    ________    ________    ________    _________

    zi_1_R1             -20         -20         -20         -20         -20 
    zi_2_R2           -19.9       -19.9       -19.9       -19.9       -19.9 
    zi_100_r100     -10.072     -10.072     -10.072     -10.072     -10.072 
    zi_199_r199    -0.14327    -0.14327    -0.14327    -0.14327    -0.14327 
    zi_200_r200    -0.04298    -0.04298    -0.04298    -0.04298    -0.04298 

pos = 37 ; key = mt_w_perc_mesh_interp_coh_grid ;rown= 50 ,coln= 772
mt_w_perc_mesh_interp_coh_grid :mu= -0.69276 ,sd= 17.2218 ,min= -20 ,max= 57.2
                 zi_1_C1    zi_2_C2    zi_386_c386    zi_771_c771    zi_772_c772
                 _______    _______    ___________    ___________    ___________

    zi_1_R1        -20          -20      -19.961        -19.923        -19.923  
    zi_2_R2        -20      -19.998      -19.177        -18.351        -18.349  
    zi_25_r25      -20      -19.951      -1.1233         17.803         17.852  
    zi_49_r49      -20      -19.902       17.715         55.528         55.626  
    zi_50_r50      -20        -19.9         18.5           57.1           57.2  

pos = 38 ; key = mt_w_perc_mesh_interp_coh_grid_wneg ;rown= 23527 ,coln= 1
mt_w_perc_mesh_interp_coh_grid_wneg :mu= -12.2397 ,sd= 5.8332 ,min= -20 ,max= -0.00091541
                       zi_1_c1
                       _______

    zi_1_R1                -20
    zi_2_R2                -20
    zi_11764_r11764     -4.474
    zi_23526_r23526    -2.6095
    zi_23527_r23527    -1.0355

pos = 39 ; key = mt_w_perc_mesh_interp_coh_grid_wpos ;rown= 15073 ,coln= 1
mt_w_perc_mesh_interp_coh_grid_wpos :mu= 17.3305 ,sd= 13.1706 ,min= 0.0036274 ,max= 57.2
                       zi_1_c1 
                       ________

    zi_1_R1            0.051944
    zi_2_R2              0.1522
    zi_7537_R7537        13.967
    zi_15072_r15072      55.626
    zi_15073_r15073        57.2

pos = 40 ; key = mt_z_mesh_coh_wkb ;rown= 625000 ,coln= 75
mt_z_mesh_coh_wkb :mu= 38 ,sd= 21.6487 ,min= 1 ,max= 75
                         zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                         _______    _______    _________    _________    _________

    zi_1_R1                 1          2          38           74           75    
    zi_2_R2                 1          2          38           74           75    
    zi_312500_r312500       1          2          38           74           75    
    zi_624999_r624999       1          2          38           74           75    
    zi_625000_r625000       1          2          38           74           75    

pos = 41 ; key = mt_z_mesh_coh_wkb_seg ;rown= 125000 ,coln= 75
mt_z_mesh_coh_wkb_seg :mu= 38 ,sd= 21.6487 ,min= 1 ,max= 75
                         zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                         _______    _______    _________    _________    _________

    zi_1_R1                 1          2          38           74           75    
    zi_2_R2                 1          2          38           74           75    
    zi_62500_R62500         1          2          38           74           75    
    zi_124999_r124999       1          2          38           74           75    
    zi_125000_r125000       1          2          38           74           75    

pos = 42 ; key = mt_z_mesh_interp_coh_grid ;rown= 772 ,coln= 75
mt_z_mesh_interp_coh_grid :mu= 38 ,sd= 21.6489 ,min= 1 ,max= 75
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1           1          2          38           74           75    
    zi_2_R2           1          2          38           74           75    
    zi_386_r386       1          2          38           74           75    
    zi_771_r771       1          2          38           74           75    
    zi_772_r772       1          2          38           74           75    

pos = 43 ; key = mt_z_trans ;rown= 75 ,coln= 75
mt_z_trans :mu= 0.013333 ,sd= 0.040863 ,min= 0 ,max= 0.22626
                  zi_1_C1       zi_2_C2      zi_38_c38     zi_74_c74     zi_75_c75 
                 __________    __________    __________    __________    __________

    zi_1_R1      3.1646e-05    3.2638e-05    3.1195e-06    9.0031e-16             0
    zi_2_R2      1.3662e-05    2.3868e-05    2.4049e-05    7.5897e-14    2.7009e-16
    zi_38_r38    2.0899e-10    4.9882e-09     0.0067879    3.3255e-05    1.3933e-06
    zi_74_r74    4.2258e-20    1.1385e-17    2.4049e-05       0.15912      0.091083
    zi_75_r75    3.3344e-22    1.3449e-19    3.1195e-06       0.21758       0.21097

pos = 44 ; key = mt_z_wage_mesh_coh_wkb ;rown= 625000 ,coln= 15
mt_z_wage_mesh_coh_wkb :mu= 1.1347 ,sd= 0.67508 ,min= 0.34741 ,max= 2.567
                         zi_1_C1    zi_2_C2    zi_8_C8    zi_14_c14    zi_15_c15
                         _______    _______    _______    _________    _________

    zi_1_R1              0.34741    0.40076    0.94436     2.2253        2.567  
    zi_2_R2              0.34741    0.40076    0.94436     2.2253        2.567  
    zi_312500_r312500    0.34741    0.40076    0.94436     2.2253        2.567  
    zi_624999_r624999    0.34741    0.40076    0.94436     2.2253        2.567  
    zi_625000_r625000    0.34741    0.40076    0.94436     2.2253        2.567  

pos = 45 ; key = mt_z_wage_mesh_interp_coh_grid ;rown= 772 ,coln= 15
mt_z_wage_mesh_interp_coh_grid :mu= 1.1347 ,sd= 0.67511 ,min= 0.34741 ,max= 2.567
                   zi_1_C1    zi_2_C2    zi_8_C8    zi_14_c14    zi_15_c15
                   _______    _______    _______    _________    _________

    zi_1_R1        0.34741    0.40076    0.94436     2.2253        2.567  
    zi_2_R2        0.34741    0.40076    0.94436     2.2253        2.567  
    zi_386_r386    0.34741    0.40076    0.94436     2.2253        2.567  
    zi_771_r771    0.34741    0.40076    0.94436     2.2253        2.567  
    zi_772_r772    0.34741    0.40076    0.94436     2.2253        2.567  

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Matrix in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                              i     idx      rowN         colN         mean         std           min            max    
                                              __    ___    ________    __________    ________    __________    __________    ___________

    ar_a                                       1     1            1           772      18.614        22.347           -20         57.277
    ar_a_meshk                                 2     2          772             1      18.614        22.347           -20         57.277
    ar_a_meshk_ori                             3     3     1.25e+05             1     -11.511        10.675           -20          49.93
    ar_ak_perc                                 4     4            1            50         0.5        0.2969         0.001          0.999
    ar_ameshk_tnext_with_r                     5     5     1.25e+05             5     -12.181        11.112         -21.9         51.178
    ar_aplusk_mesh                             6     6     1.25e+05             1     -3.0215         16.27           -20             50
    ar_coh_bridge_perc                         7     7            1            10         0.5       0.33641             0              1
    ar_forbrblk                                8     8            1            14     -9.2857        6.2163           -19              0
    ar_forbrblk_r                              9     9            1            14       0.065    2.8803e-17         0.065          0.065
    ar_interp_c_grid                          10    10            1    7.7257e+05      38.649        22.302          0.02         77.277
    ar_interp_coh_grid                        11    11            1           772      18.614        22.347           -20         57.277
    ar_k_mesha                                12    12          772             1           0             0             0              0
    ar_k_mesha_ori                            13    13     1.25e+05             1      8.4893        10.675             0          69.93
    ar_w_level                                14    14            1           700      14.979        20.244           -20             50
    ar_w_level_full                           15    15            1          2500     -3.0215        16.274           -20             50
    ar_w_perc                                 16    16            1            50         0.5        0.2969         0.001          0.999
    ar_z_r_infbr                              17    17            1             5        0.06       0.02767         0.025          0.095
    ar_z_r_infbr_mesh_wage_r1w2               18    18            1            75        0.06      0.024915         0.025          0.095
    ar_z_r_infbr_mesh_wage_w1r2               19    19            1            75        0.06      0.024915         0.025          0.095
    ar_z_r_infbr_prob                         20    20            1             5         0.2       0.34803    0.00012164        0.81093
    ar_z_wage                                 21    21            1            15      1.1347       0.69878       0.34741          2.567
    ar_z_wage_mesh_r_infbr_r1w2               22    22            1            75      1.1347       0.67963       0.34741          2.567
    ar_z_wage_mesh_r_infbr_w1r2               23    23            1            75      1.1347       0.67963       0.34741          2.567
    ar_z_wage_prob                            24    24            1            15    0.066667      0.060897     0.0027089        0.16757
    cl_mt_coh_wkb_mesh_z_r_infbr              25    25     1.25e+05            75     -1.4687        16.586       -20.056         57.277
    mt_bl_w_perc_mesh_interp_coh_grid_wneg    26    27           50           772     0.60951       0.48787             0              1
    mt_coh_bridge_perc_mesh_w_level_neg       27    28          200            10         0.5       0.31922             0              1
    mt_coh_w_perc_ratio_wneg                  28    29        23527             1     0.72495       0.37217             0              1
    mt_coh_wkb                                29    30          772            75      18.614        22.333           -20         57.277
    mt_coh_wkb_ori                            30    31     6.25e+05            15     -1.8516        16.732       -21.456         57.277
    mt_interp_coh_grid_mesh_w_perc            31    32           50           772      18.614        22.333           -20         57.277
    mt_interp_coh_grid_mesh_z                 32    33          772            75      18.614        22.333           -20         57.277
    mt_interp_coh_grid_mesh_z_wage            33    34          772            15      18.614        22.334           -20         57.277
    mt_k                                      34    35           50          2500      8.4893        10.675             0          69.93
    mt_w_level_neg_mesh_coh_bridge_perc       35    36          200            10     -10.021        5.7914           -20       -0.04298
    mt_w_perc_mesh_interp_coh_grid            36    37           50           772    -0.69276        17.222           -20           57.2
    mt_w_perc_mesh_interp_coh_grid_wneg       37    38        23527             1      -12.24        5.8332           -20    -0.00091541
    mt_w_perc_mesh_interp_coh_grid_wpos       38    39        15073             1       17.33        13.171     0.0036274           57.2
    mt_z_mesh_coh_wkb                         39    40     6.25e+05            75          38        21.649             1             75
    mt_z_mesh_coh_wkb_seg                     40    41     1.25e+05            75          38        21.649             1             75
    mt_z_mesh_interp_coh_grid                 41    42          772            75          38        21.649             1             75
    mt_z_trans                                42    43           75            75    0.013333      0.040863             0        0.22626
    mt_z_wage_mesh_coh_wkb                    43    44     6.25e+05            15      1.1347       0.67508       0.34741          2.567
    mt_z_wage_mesh_interp_coh_grid            44    45          772            15      1.1347       0.67511       0.34741          2.567

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                   i    idx    value
                   _    ___    _____

    it_ameshk_n    1    26      772 

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: PARAM_MAP
----------------------------------------
  Map with properties:

        Count: 51
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 1 ; key = bl_b_is_principle ; val = true
pos = 2 ; key = bl_bridge ; val = true
pos = 3 ; key = bl_default ; val = true
pos = 4 ; key = bl_rollover ; val = true
pos = 5 ; key = fl_Amean ; val = 1
pos = 6 ; key = fl_alpha ; val = 0.36
pos = 7 ; key = fl_b_bd ; val = -20
pos = 8 ; key = fl_beta ; val = 0.94
pos = 9 ; key = fl_c_min ; val = 0.02
pos = 10 ; key = fl_coh_interp_grid_gap ; val = 0.1
pos = 11 ; key = fl_crra ; val = 1.5
pos = 12 ; key = fl_default_wprime ; val = 0
pos = 13 ; key = fl_delta ; val = 0.08
pos = 14 ; key = fl_forbrblk_brleast ; val = -1
pos = 15 ; key = fl_forbrblk_brmost ; val = -19
pos = 16 ; key = fl_forbrblk_gap ; val = -1.5
pos = 17 ; key = fl_k_max ; val = 70
pos = 18 ; key = fl_k_min ; val = 0
pos = 19 ; key = fl_nan_replace ; val = -9999
pos = 20 ; key = fl_r_fbr ; val = 0.065
pos = 21 ; key = fl_r_fsv ; val = 0.025
pos = 22 ; key = fl_r_inf ; val = 0.095
pos = 23 ; key = fl_tol_dist ; val = 1e-05
pos = 24 ; key = fl_tol_pol ; val = 1e-05
pos = 25 ; key = fl_tol_val ; val = 1e-05
pos = 26 ; key = fl_w ; val = 0.44365
pos = 27 ; key = fl_w_interp_grid_gap ; val = 0.1
pos = 28 ; key = fl_w_max ; val = 50
pos = 29 ; key = fl_w_min ; val = -20
pos = 30 ; key = fl_z_r_infbr_max ; val = 0.095
pos = 31 ; key = fl_z_r_infbr_min ; val = 0.025
pos = 32 ; key = fl_z_r_infbr_n ; val = 5
pos = 33 ; key = fl_z_r_infbr_poiss_mean ; val = 20
pos = 34 ; key = fl_z_wage_mu ; val = 0
pos = 35 ; key = fl_z_wage_rho ; val = 0.8
pos = 36 ; key = fl_z_wage_sig ; val = 0.2
pos = 37 ; key = it_ak_perc_n ; val = 50
pos = 38 ; key = it_c_interp_grid_gap ; val = 0.0001
pos = 39 ; key = it_coh_bridge_perc_n ; val = 10
pos = 40 ; key = it_maxiter_dist ; val = 1000
pos = 41 ; key = it_maxiter_val ; val = 250
pos = 42 ; key = it_tol_pol_nochange ; val = 25
pos = 43 ; key = it_w_perc_n ; val = 50
pos = 44 ; key = it_z_n ; val = 75
pos = 45 ; key = it_z_wage_n ; val = 15
pos = 46 ; key = st_analytical_stationary_type ; val = eigenvector
pos = 47 ; key = st_forbrblk_type ; val = unif
pos = 48 ; key = st_model ; val = ipwkbzr_fibs
pos = 49 ; key = st_v_coh_z_interp_method ; val = method_cell
pos = 50 ; key = st_z_r_infbr_drv_ele_type ; val = unif
pos = 51 ; key = st_z_r_infbr_drv_prb_type ; val = poiss
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                               i     idx     value 
                               __    ___    _______

    bl_b_is_principle           1     1           1
    bl_bridge                   2     2           1
    bl_default                  3     3           1
    bl_rollover                 4     4           1
    fl_Amean                    5     5           1
    fl_alpha                    6     6        0.36
    fl_b_bd                     7     7         -20
    fl_beta                     8     8        0.94
    fl_c_min                    9     9        0.02
    fl_coh_interp_grid_gap     10    10         0.1
    fl_crra                    11    11         1.5
    fl_default_wprime          12    12           0
    fl_delta                   13    13        0.08
    fl_forbrblk_brleast        14    14          -1
    fl_forbrblk_brmost         15    15         -19
    fl_forbrblk_gap            16    16        -1.5
    fl_k_max                   17    17          70
    fl_k_min                   18    18           0
    fl_nan_replace             19    19       -9999
    fl_r_fbr                   20    20       0.065
    fl_r_fsv                   21    21       0.025
    fl_r_inf                   22    22       0.095
    fl_tol_dist                23    23       1e-05
    fl_tol_pol                 24    24       1e-05
    fl_tol_val                 25    25       1e-05
    fl_w                       26    26     0.44365
    fl_w_interp_grid_gap       27    27         0.1
    fl_w_max                   28    28          50
    fl_w_min                   29    29         -20
    fl_z_r_infbr_max           30    30       0.095
    fl_z_r_infbr_min           31    31       0.025
    fl_z_r_infbr_n             32    32           5
    fl_z_r_infbr_poiss_mean    33    33          20
    fl_z_wage_mu               34    34           0
    fl_z_wage_rho              35    35         0.8
    fl_z_wage_sig              36    36         0.2
    it_ak_perc_n               37    37          50
    it_c_interp_grid_gap       38    38      0.0001
    it_coh_bridge_perc_n       39    39          10
    it_maxiter_dist            40    40        1000
    it_maxiter_val             41    41         250
    it_tol_pol_nochange        42    42          25
    it_w_perc_n                43    43          50
    it_z_n                     44    44          75
    it_z_wage_n                45    45          15

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Strings in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                     i    idx
                                     _    ___

    st_analytical_stationary_type    1    46 
    st_forbrblk_type                 2    47 
    st_model                         3    48 
    st_v_coh_z_interp_method         4    49 
    st_z_r_infbr_drv_ele_type        5    50 
    st_z_r_infbr_drv_prb_type        6    51 

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: FUNC_MAP
----------------------------------------
  Map with properties:

        Count: 10
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 1 ; key = f_coh ; val = @(z,b_with_r,k)(f_prod(z,k)+k*(1-fl_delta)+fl_w+b_with_r)
pos = 2 ; key = f_coh_fbis ; val = @(fl_r_inf,ar_for_borr,ar_inf_borr,ar_for_save)(ar_for_borr.*(1+fl_r_fbr)+ar_inf_borr.*(1+fl_r_inf)+ar_for_save.*(1+fl_r_fsv))
pos = 3 ; key = f_coh_save ; val = @(b)(b.*(1+fl_r_fsv))
pos = 4 ; key = f_cons ; val = @(coh,bprime,kprime)(coh-kprime-bprime)
pos = 5 ; key = f_inc ; val = @(z,k,fl_r_inf,ar_for_borr,ar_inf_borr,ar_for_save)(f_prod(z,k)-(fl_delta)*k+fl_w+(ar_for_borr.*(fl_r_fbr)+ar_inf_borr.*(fl_r_inf)+ar_for_save.*(fl_r_fsv)))
pos = 6 ; key = f_prod ; val = @(z,k)((fl_Amean.*(z)).*(k.^(fl_alpha)))
pos = 7 ; key = f_util_crra ; val = @(c)(((c).^(1-fl_crra)-1)./(1-fl_crra))
pos = 8 ; key = f_util_log ; val = @(c)log(c)
pos = 9 ; key = f_util_standin ; val = @(z,b,k)f_util_log((f_coh(z,b,k)-fl_b_bd).*((f_coh(z,b,k)-fl_b_bd)>fl_c_min)+fl_c_min.*((f_coh(z,b,k)-fl_b_bd)<=fl_c_min))
pos = 10 ; key = f_util_standin_coh ; val = @(coh,fl_r_borr)f_util_log((coh-fl_b_bd).*((coh>0)&(((coh-fl_b_bd)./(1))>fl_c_min))+((coh-fl_b_bd)./(1)).*((coh<=0)&(((coh-fl_b_bd)./(1))>fl_c_min))+(fl_c_min./(1+fl_r_borr)).*((((coh-fl_b_bd)./(1))<=fl_c_min)))
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                          i     idx    xFunction
                          __    ___    _________

    f_coh                  1     1         1    
    f_coh_fbis             2     2         2    
    f_coh_save             3     3         3    
    f_cons                 4     4         4    
    f_inc                  5     5         5    
    f_prod                 6     6         6    
    f_util_crra            7     7         7    
    f_util_log             8     8         8    
    f_util_standin         9     9         9    
    f_util_standin_coh    10    10        10    

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: RESULT_MAP
----------------------------------------
  Map with properties:

        Count: 27
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 1 ; key = ar_pol_diff_norm ;rown= 130 ,coln= 1
ar_pol_diff_norm :mu= 133.3875 ,sd= 665.2612 ,min= 0 ,max= 5572.4637
                   zi_1_c1
                   _______

    zi_1_R1        4800.3 
    zi_2_R2        5572.5 
    zi_65_R65      4.9631 
    zi_129_r129         0 
    zi_130_r130         0 

pos = 2 ; key = ar_st_pol_names ; val = cl_mt_coh cl_mt_pol_a cl_mt_pol_k cl_mt_pol_c cl_mt_pol_a_principleonly cl_mt_pol_b_bridge cl_mt_pol_inf_borr_nobridge cl_mt_pol_for_borr cl_mt_pol_for_save cl_mt_it_for_only_nbdg cl_mt_it_inf_only_nbdg cl_mt_it_frin_brr_nbdg cl_mt_it_fr_brrsv_nbdg cl_mt_it_frmsavng_only
pos = 3 ; key = ar_val_diff_norm ;rown= 130 ,coln= 1
ar_val_diff_norm :mu= 22.839 ,sd= 63.2953 ,min= 0.0063875 ,max= 401.777
                    zi_1_c1 
                   _________

    zi_1_R1           401.78
    zi_2_R2           336.21
    zi_65_R65         0.2944
    zi_129_r129    0.0067911
    zi_130_r130    0.0063875

pos = 4 ; key = cl_mt_coh ;rown= 772 ,coln= 75
cl_mt_coh :mu= 18.6145 ,sd= 22.3328 ,min= -20 ,max= 57.2773
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1           -20        -20         -20          -20          -20  
    zi_2_R2         -19.9      -19.9       -19.9        -19.9        -19.9  
    zi_386_r386    18.538     18.538      18.538       18.538       18.538  
    zi_771_r771    57.177     57.177      57.177       57.177       57.177  
    zi_772_r772    57.277     57.277      57.277       57.277       57.277  

pos = 5 ; key = cl_mt_cons ;rown= 772 ,coln= 75
cl_mt_cons :mu= 2.8175 ,sd= 2.5617 ,min= -19.9486 ,max= 7.2187
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1        -19.949    -19.949     -19.198      -18.314      -18.274 
    zi_2_R2        -19.848    -19.848     -19.101      -18.221       -18.18 
    zi_386_r386     2.0458     2.0458      2.9572       3.1732       3.1732 
    zi_771_r771     6.7426     6.7779      6.8836       7.1507       7.2009 
    zi_772_r772     6.7507      6.786      6.8805        7.139       7.2096 

pos = 6 ; key = cl_mt_it_for_only_nbdg ;rown= 772 ,coln= 75
cl_mt_it_for_only_nbdg :mu= 0 ,sd= 0 ,min= 0 ,max= 0
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1         false      false       false        false        false  
    zi_2_R2         false      false       false        false        false  
    zi_386_r386     false      false       false        false        false  
    zi_771_r771     false      false       false        false        false  
    zi_772_r772     false      false       false        false        false  

pos = 7 ; key = cl_mt_it_fr_brrsv_nbdg ;rown= 772 ,coln= 75
cl_mt_it_fr_brrsv_nbdg :mu= 0.038359 ,sd= 0.19206 ,min= 0 ,max= 1
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1         false      false       false        false        false  
    zi_2_R2         false      false       false        false        false  
    zi_386_r386     false      false       false        false        false  
    zi_771_r771     false      false       false        false        false  
    zi_772_r772     false      false       false        false        false  

pos = 8 ; key = cl_mt_it_frin_brr_nbdg ;rown= 772 ,coln= 75
cl_mt_it_frin_brr_nbdg :mu= 0.09399 ,sd= 0.29182 ,min= 0 ,max= 1
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1         false      false       false        false        false  
    zi_2_R2         false      false       false        false        false  
    zi_386_r386     false      false       false        false        false  
    zi_771_r771     false      false       false        false        false  
    zi_772_r772     false      false       false        false        false  

pos = 9 ; key = cl_mt_it_frmsavng_only ;rown= 772 ,coln= 75
cl_mt_it_frmsavng_only :mu= 0.63511 ,sd= 0.4814 ,min= 0 ,max= 1
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1         true       true        true         true         true   
    zi_2_R2         true       true        true         true         true   
    zi_386_r386     true       true        true         true         true   
    zi_771_r771     true       true        true         true         true   
    zi_772_r772     true       true        true         true         true   

pos = 10 ; key = cl_mt_it_inf_only_nbdg ;rown= 772 ,coln= 75
cl_mt_it_inf_only_nbdg :mu= 0.23254 ,sd= 0.42245 ,min= 0 ,max= 1
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1         false      false       false        false        false  
    zi_2_R2         false      false       false        false        false  
    zi_386_r386     false      false       false        false        false  
    zi_771_r771     false      false       false        false        false  
    zi_772_r772     false      false       false        false        false  

pos = 11 ; key = cl_mt_pol_a ;rown= 772 ,coln= 75
cl_mt_pol_a :mu= 8.8082 ,sd= 20.3639 ,min= -21.8995 ,max= 50.3606
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1        -2.1082    -2.1082     -4.8958      -13.111      -14.781 
    zi_2_R2        -2.1082    -2.1082     -4.8923      -13.104      -14.774 
    zi_386_r386     14.248     14.248       9.064       0.2057       0.2057 
    zi_771_r771     48.955     47.509      43.173       32.223       30.163 
    zi_772_r772     49.045     47.598      43.723       33.124       30.229 

pos = 12 ; key = cl_mt_pol_a_principleonly ;rown= 772 ,coln= 75
cl_mt_pol_a_principleonly :mu= 8.7292 ,sd= 19.6988 ,min= -19.9996 ,max= 49.1323
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1        -2.0567    -2.0567     -4.0935      -11.426      -13.055 
    zi_2_R2        -2.0567    -2.0567     -4.0935      -11.426      -13.055 
    zi_386_r386       13.9       13.9       8.843      0.20069      0.20069 
    zi_771_r771     47.761     46.351       42.12       31.437       29.428 
    zi_772_r772     47.849     46.437      42.656       32.316       29.492 

pos = 13 ; key = cl_mt_pol_b_bridge ;rown= 772 ,coln= 75
cl_mt_pol_b_bridge :mu= -2.5943 ,sd= 5.2866 ,min= -20 ,max= 0
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1           -20        -20         -20          -20          -20  
    zi_2_R2         -19.9      -19.9       -19.9        -19.9        -19.9  
    zi_386_r386         0          0           0            0            0  
    zi_771_r771         0          0           0            0            0  
    zi_772_r772         0          0           0            0            0  

pos = 14 ; key = cl_mt_pol_c ;rown= 772 ,coln= 75
cl_mt_pol_c :mu= 3.1243 ,sd= 1.5684 ,min= 0.02 ,max= 7.9469
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1          0.02       0.02        0.02         0.02         0.02  
    zi_2_R2          0.02       0.02        0.02         0.02         0.02  
    zi_386_r386    2.3933     2.3933      3.1782       3.1782       3.1782  
    zi_771_r771    7.9366     7.9366      7.9366       7.9366       7.9366  
    zi_772_r772    7.9469     7.9469      7.9469       7.9469       7.9469  

pos = 15 ; key = cl_mt_pol_for_borr ;rown= 772 ,coln= 75
cl_mt_pol_for_borr :mu= -0.66178 ,sd= 2.0412 ,min= -14.5 ,max= 0
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1           0          0           0            0            0    
    zi_2_R2           0          0           0            0            0    
    zi_386_r386       0          0           0            0            0    
    zi_771_r771       0          0           0            0            0    
    zi_772_r772       0          0           0            0            0    

pos = 16 ; key = cl_mt_pol_for_save ;rown= 772 ,coln= 75
cl_mt_pol_for_save :mu= 13.3298 ,sd= 14.7569 ,min= 0 ,max= 49.1323
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1        17.943     17.943      15.907        8.5743       6.9449 
    zi_2_R2        17.843     17.843      15.806        8.4739       6.8445 
    zi_386_r386      13.9       13.9       8.843       0.20069      0.20069 
    zi_771_r771    47.761     46.351       42.12        31.437       29.428 
    zi_772_r772    47.849     46.437      42.656        32.316       29.492 

pos = 17 ; key = cl_mt_pol_inf_borr_nobridge ;rown= 772 ,coln= 75
cl_mt_pol_inf_borr_nobridge :mu= -1.3445 ,sd= 3.1015 ,min= -19.9821 ,max= 0
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1           0          0           0            0            0    
    zi_2_R2           0          0           0            0            0    
    zi_386_r386       0          0           0            0            0    
    zi_771_r771       0          0           0            0            0    
    zi_772_r772       0          0           0            0            0    

pos = 18 ; key = cl_mt_pol_k ;rown= 772 ,coln= 75
cl_mt_pol_k :mu= 6.9888 ,sd= 5.3326 ,min= 5.018e-07 ,max= 22.2439
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1        2.0567     2.0567      4.0935       11.426       13.055  
    zi_2_R2        2.0567     2.0567      4.0935       11.426       13.055  
    zi_386_r386    2.2447     2.2447      6.5171       15.159       15.159  
    zi_771_r771    1.4795     2.8897      7.1204       17.803       19.813  
    zi_772_r772    1.4814     2.8935      6.6741       17.014       19.838  

pos = 19 ; key = mt_it_b_bridge_idx ;rown= 772 ,coln= 75
mt_it_b_bridge_idx :mu= 0.25907 ,sd= 0.43813 ,min= 0 ,max= 1
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1         true       true        true         true         true   
    zi_2_R2         true       true        true         true         true   
    zi_386_r386     false      false       false        false        false  
    zi_771_r771     false      false       false        false        false  
    zi_772_r772     false      false       false        false        false  

pos = 20 ; key = mt_it_for_only_nbdg ;rown= 772 ,coln= 75
mt_it_for_only_nbdg :mu= 0 ,sd= 0 ,min= 0 ,max= 0
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1         false      false       false        false        false  
    zi_2_R2         false      false       false        false        false  
    zi_386_r386     false      false       false        false        false  
    zi_771_r771     false      false       false        false        false  
    zi_772_r772     false      false       false        false        false  

pos = 21 ; key = mt_it_fr_brrsv_nbdg ;rown= 772 ,coln= 75
mt_it_fr_brrsv_nbdg :mu= 0.038359 ,sd= 0.19206 ,min= 0 ,max= 1
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1         false      false       false        false        false  
    zi_2_R2         false      false       false        false        false  
    zi_386_r386     false      false       false        false        false  
    zi_771_r771     false      false       false        false        false  
    zi_772_r772     false      false       false        false        false  

pos = 22 ; key = mt_it_frin_brr_nbdg ;rown= 772 ,coln= 75
mt_it_frin_brr_nbdg :mu= 0.09399 ,sd= 0.29182 ,min= 0 ,max= 1
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1         false      false       false        false        false  
    zi_2_R2         false      false       false        false        false  
    zi_386_r386     false      false       false        false        false  
    zi_771_r771     false      false       false        false        false  
    zi_772_r772     false      false       false        false        false  

pos = 23 ; key = mt_it_frmsavng_only ;rown= 772 ,coln= 75
mt_it_frmsavng_only :mu= 0.63511 ,sd= 0.4814 ,min= 0 ,max= 1
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1         true       true        true         true         true   
    zi_2_R2         true       true        true         true         true   
    zi_386_r386     true       true        true         true         true   
    zi_771_r771     true       true        true         true         true   
    zi_772_r772     true       true        true         true         true   

pos = 24 ; key = mt_it_inf_only_nbdg ;rown= 772 ,coln= 75
mt_it_inf_only_nbdg :mu= 0.23254 ,sd= 0.42245 ,min= 0 ,max= 1
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1         false      false       false        false        false  
    zi_2_R2         false      false       false        false        false  
    zi_386_r386     false      false       false        false        false  
    zi_771_r771     false      false       false        false        false  
    zi_772_r772     false      false       false        false        false  

pos = 25 ; key = mt_pol_idx ;rown= 772 ,coln= 75
mt_pol_idx :mu= 19319.2361 ,sd= 11146.1336 ,min= 1 ,max= 38595
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1             1          1           1            1            1  
    zi_2_R2            91         91          91           91           91  
    zi_386_r386     19297      19297       19296        19296        19296  
    zi_771_r771     38545      38545       38545        38545        38545  
    zi_772_r772     38595      38595       38595        38595        38595  

pos = 26 ; key = mt_pol_perc_change ;rown= 130 ,coln= 75
mt_pol_perc_change :mu= 0.094129 ,sd= 0.25138 ,min= 0 ,max= 1
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1           1          1               1        1            1    
    zi_2_R2           1          1               1        1            1    
    zi_65_R65         0          0       0.0012953        0            0    
    zi_129_r129       0          0               0        0            0    
    zi_130_r130       0          0               0        0            0    

pos = 27 ; key = mt_val ;rown= 772 ,coln= 75
mt_val :mu= 8.878 ,sd= 6.6873 ,min= -8.9538 ,max= 16.6011
                   zi_1_C1    zi_2_C2    zi_38_c38    zi_74_c74    zi_75_c75
                   _______    _______    _________    _________    _________

    zi_1_R1        -8.9074    -8.6665     -6.7632      -4.0806      -3.6193 
    zi_2_R2        -8.9074    -8.6665     -6.7632      -4.0806      -3.6193 
    zi_386_r386     10.302     10.404      11.298       12.615       12.847 
    zi_771_r771     15.416     15.458       15.84       16.475       16.596 
    zi_772_r772     15.424     15.467      15.847       16.482       16.601 

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Matrix in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                   i     idx    rowN    colN      mean        std         min        max  
                                   __    ___    ____    ____    ________    _______    _________    ______

    ar_pol_diff_norm                1     1     130       1       133.39     665.26            0    5572.5
    ar_val_diff_norm                2     3     130       1       22.839     63.295    0.0063875    401.78
    cl_mt_coh                       3     4     772      75       18.614     22.333          -20    57.277
    cl_mt_cons                      4     5     772      75       2.8175     2.5617      -19.949    7.2187
    cl_mt_it_for_only_nbdg          5     6     772      75            0          0            0         0
    cl_mt_it_fr_brrsv_nbdg          6     7     772      75     0.038359    0.19206            0         1
    cl_mt_it_frin_brr_nbdg          7     8     772      75      0.09399    0.29182            0         1
    cl_mt_it_frmsavng_only          8     9     772      75      0.63511     0.4814            0         1
    cl_mt_it_inf_only_nbdg          9    10     772      75      0.23254    0.42245            0         1
    cl_mt_pol_a                    10    11     772      75       8.8082     20.364      -21.899    50.361
    cl_mt_pol_a_principleonly      11    12     772      75       8.7292     19.699          -20    49.132
    cl_mt_pol_b_bridge             12    13     772      75      -2.5943     5.2866          -20         0
    cl_mt_pol_c                    13    14     772      75       3.1243     1.5684         0.02    7.9469
    cl_mt_pol_for_borr             14    15     772      75     -0.66178     2.0412        -14.5         0
    cl_mt_pol_for_save             15    16     772      75        13.33     14.757            0    49.132
    cl_mt_pol_inf_borr_nobridge    16    17     772      75      -1.3445     3.1015      -19.982         0
    cl_mt_pol_k                    17    18     772      75       6.9888     5.3326    5.018e-07    22.244
    mt_it_b_bridge_idx             18    19     772      75      0.25907    0.43813            0         1
    mt_it_for_only_nbdg            19    20     772      75            0          0            0         0
    mt_it_fr_brrsv_nbdg            20    21     772      75     0.038359    0.19206            0         1
    mt_it_frin_brr_nbdg            21    22     772      75      0.09399    0.29182            0         1
    mt_it_frmsavng_only            22    23     772      75      0.63511     0.4814            0         1
    mt_it_inf_only_nbdg            23    24     772      75      0.23254    0.42245            0         1
    mt_pol_idx                     24    25     772      75        19319      11146            1     38595
    mt_pol_perc_change             25    26     130      75     0.094129    0.25138            0         1
    mt_val                         26    27     772      75        8.878     6.6873      -8.9538    16.601

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Strings in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                       i    idx
                       _    ___

    ar_st_pol_names    1     2 

Derive Distribution

if (strcmp(st_analytical_stationary_type, 'loop'))

    result_map = ff_iwkz_ds(param_map, support_map, armt_map, func_map, result_map);

elseif (strcmp(st_analytical_stationary_type, 'vector'))

    result_map = ff_iwkz_ds_vec(param_map, support_map, armt_map, func_map, result_map);

elseif (strcmp(st_analytical_stationary_type, 'eigenvector'))

    result_map = ff_iwkz_ds_vecsv(param_map, support_map, armt_map, func_map, result_map);

end
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_coh
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
    4.0793

fl_choice_sd
    5.4532

fl_choice_coefofvar
    1.3368

fl_choice_prob_zero
    0.0019

fl_choice_prob_below_zero
    0.1510

fl_choice_prob_above_zero
    0.8470

fl_choice_prob_max
   4.7341e-14

tb_prob_drv
    percentiles    cl_mt_cohPercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    _________________________    ________________________________

        0.1                      -20                       -0.019945            
          1                  -16.086                       -0.046476            
          5                  -5.3474                        -0.14254            
         10                   -1.333                        -0.17788            
         15                -0.028344                        -0.18502            
         20                  0.97526                        -0.17832            
         25                   1.7781                         -0.1622            
         35                   3.2835                       -0.094037            
         50                   4.7889                        0.052969            
         65                   5.9933                         0.26464            
         75                   6.5954                         0.41607            
         80                   7.0972                         0.49798            
         85                   7.9001                         0.58225            
         90                   9.3051                         0.68637            
         95                   11.814                         0.81436            
         99                   17.334                         0.95061            
       99.9                    24.56                         0.99344            

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_pol_a
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
   -2.3898

fl_choice_sd
    4.3018

fl_choice_coefofvar
   -1.8001

fl_choice_prob_zero
     0

fl_choice_prob_below_zero
    0.7175

fl_choice_prob_above_zero
    0.2825

fl_choice_prob_max
   3.7664e-33

tb_prob_drv
    percentiles    cl_mt_pol_aPercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    ___________________________    ________________________________

        0.1                  -21.868                         0.0094707            
          1                  -21.403                          0.090889            
          5                  -10.784                           0.34719            
         10                  -6.5712                           0.51863            
         15                  -5.5958                           0.64274            
         20                  -4.3745                           0.74308            
         25                  -4.0855                           0.83261            
         35                  -2.6555                           0.95764            
         50                  -1.0984                            1.0645            
         65                  -0.1044                            1.0992            
         75                  0.05625                               1.1            
         80                  0.12088                            1.0981            
         85                  0.20002                            1.0948            
         90                  0.31482                            1.0894            
         95                   1.2406                            1.0777            
         99                   5.2797                            1.0324            
       99.9                   10.986                            1.0055            

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_pol_k
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
    4.6296

fl_choice_sd
    2.1437

fl_choice_coefofvar
    0.4630

fl_choice_prob_zero
     0

fl_choice_prob_below_zero
     0

fl_choice_prob_above_zero
    1.0000

fl_choice_prob_max
   1.2448e-12

tb_prob_drv
    percentiles    cl_mt_pol_kPercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    ___________________________    ________________________________

        0.1                1.6058e-06                        3.9669e-10           
          1                    1.3094                         0.0015462           
          5                    2.0037                          0.016297           
         10                    2.4585                          0.041142           
         15                    2.7516                          0.068847           
         20                    2.9055                          0.099412           
         25                    3.1758                           0.13396           
         35                     3.688                           0.20637           
         50                    4.3581                           0.33652           
         65                    4.8279                           0.48407           
         75                    5.5122                           0.59791           
         80                    5.8438                           0.65563           
         85                    6.5308                            0.7247           
         90                    7.3665                           0.79943           
         95                    8.8533                           0.88404           
         99                    12.001                            0.9701           
       99.9                    15.755                            0.9961           

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_pol_c
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
    1.7428

fl_choice_sd
    0.4905

fl_choice_coefofvar
    0.2814

fl_choice_prob_zero
     0

fl_choice_prob_below_zero
     0

fl_choice_prob_above_zero
    1.0000

fl_choice_prob_max
   4.7341e-14

tb_prob_drv
    percentiles    cl_mt_pol_cPercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    ___________________________    ________________________________

        0.1                    0.02                          4.6683e-05           
          1                  1.1156                           0.0049473           
          5                  1.2029                             0.03168           
         10                  1.2652                            0.068149           
         15                  1.3151                             0.10292           
         20                  1.3649                              0.1435           
         25                  1.4086                             0.18628           
         35                  1.4771                             0.26429           
         50                  1.5706                              0.3973           
         65                  1.6579                             0.53478           
         75                   2.185                               0.657           
         80                  2.2264                             0.71832           
         85                  2.3009                             0.78057           
         90                  2.4168                             0.84481           
         95                   2.632                             0.91735           
         99                  3.1203                              0.9806           
       99.9                  3.7567                             0.99775           

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_pol_a_principleonly
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
   -2.2117

fl_choice_sd
    3.9994

fl_choice_coefofvar
   -1.8083

fl_choice_prob_zero
     0

fl_choice_prob_below_zero
    0.7175

fl_choice_prob_above_zero
    0.2825

fl_choice_prob_max
   3.7664e-33

tb_prob_drv
    percentiles    cl_mt_pol_a_principleonlyPercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    _________________________________________    ________________________________

        0.1                          -19.998                               0.0090436            
          1                          -19.764                                0.090977            
          5                          -10.002                                 0.34648            
         10                          -6.1251                                 0.52019            
         15                          -5.2051                                 0.64596            
         20                          -4.1033                                 0.74614            
         25                          -3.8298                                 0.83619            
         35                          -2.4897                                 0.96144            
         50                          -1.0305                                  1.0698            
         65                        -0.095346                                  1.1047            
         75                         0.054878                                  1.1054            
         80                          0.11793                                  1.1034            
         85                          0.19514                                     1.1            
         90                          0.30714                                  1.0943            
         95                           1.2104                                  1.0819            
         99                           5.1509                                  1.0341            
       99.9                           10.718                                  1.0058            

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_pol_b_bridge
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
   -0.7547

fl_choice_sd
    2.7704

fl_choice_coefofvar
   -3.6707

fl_choice_prob_zero
    0.8490

fl_choice_prob_below_zero
    0.1510

fl_choice_prob_above_zero
     0

fl_choice_prob_max
    0.8490

tb_prob_drv
    percentiles    cl_mt_pol_b_bridgePercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    __________________________________    ________________________________

        0.1                          -20                              0.1078             
          1                      -16.086                              0.2512             
          5                      -5.3474                             0.77041             
         10                       -1.333                              0.9614             
         15                    -0.028344                                   1             
         20                            0                                   1             
         25                            0                                   1             
         35                            0                                   1             
         50                            0                                   1             
         65                            0                                   1             
         75                            0                                   1             
         80                            0                                   1             
         85                            0                                   1             
         90                            0                                   1             
         95                            0                                   1             
         99                            0                                   1             
       99.9                            0                                   1             

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_pol_inf_borr_nobridge
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
   -0.1295

fl_choice_sd
    0.4844

fl_choice_coefofvar
   -3.7398

fl_choice_prob_zero
    0.4978

fl_choice_prob_below_zero
    0.5022

fl_choice_prob_above_zero
     0

fl_choice_prob_max
    0.4978

tb_prob_drv
    percentiles    cl_mt_pol_inf_borr_nobridgePercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    ___________________________________________    ________________________________

        0.1                            -6.251                                 0.058832            
          1                           -2.4176                                  0.33681            
          5                          -0.41196                                  0.57016            
         10                          -0.24557                                  0.68705            
         15                          -0.19096                                  0.77028            
         20                          -0.16078                                  0.83342            
         25                          -0.11984                                  0.88773            
         35                         -0.072398                                  0.96263            
         50                        -0.0022809                                  0.99998            
         65                                 0                                        1            
         75                                 0                                        1            
         80                                 0                                        1            
         85                                 0                                        1            
         90                                 0                                        1            
         95                                 0                                        1            
         99                                 0                                        1            
       99.9                                 0                                        1            

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_pol_for_borr
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
   -1.6535

fl_choice_sd
    1.9996

fl_choice_coefofvar
   -1.2093

fl_choice_prob_zero
    0.4538

fl_choice_prob_below_zero
    0.5462

fl_choice_prob_above_zero
     0

fl_choice_prob_max
    0.4538

tb_prob_drv
    percentiles    cl_mt_pol_for_borrPercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    __________________________________    ________________________________

        0.1                        -10                              0.0090671            
          1                         -7                                0.10642            
          5                       -5.5                                0.32009            
         10                         -4                                0.66784            
         15                         -4                                0.66784            
         20                         -4                                0.66784            
         25                       -2.5                                0.90404            
         35                       -2.5                                0.90404            
         50                         -1                                      1            
         65                          0                                      1            
         75                          0                                      1            
         80                          0                                      1            
         85                          0                                      1            
         90                          0                                      1            
         95                          0                                      1            
         99                          0                                      1            
       99.9                          0                                      1            

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_pol_for_save
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
    0.3260

fl_choice_sd
    1.4118

fl_choice_coefofvar
    4.3302

fl_choice_prob_zero
    0.5022

fl_choice_prob_below_zero
     0

fl_choice_prob_above_zero
    0.4978

fl_choice_prob_max
   3.7664e-33

tb_prob_drv
    percentiles    cl_mt_pol_for_savePercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    __________________________________    ________________________________

        0.1                            0                                    0            
          1                            0                                    0            
          5                            0                                    0            
         10                            0                                    0            
         15                            0                                    0            
         20                            0                                    0            
         25                            0                                    0            
         35                            0                                    0            
         50                            0                                    0            
         65                     0.072759                             0.018377            
         75                      0.13601                             0.050555            
         80                      0.18047                             0.074072            
         85                        0.236                              0.10592            
         90                      0.35972                              0.15241            
         95                       1.4497                              0.25395            
         99                       6.4837                              0.63415            
       99.9                       17.536                              0.98528            

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_it_for_only_nbdg
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
     0

fl_choice_sd
     0

fl_choice_coefofvar
   NaN

fl_choice_prob_zero
    1.0000

fl_choice_prob_below_zero
     0

fl_choice_prob_above_zero
     0

fl_choice_prob_max
    1.0000

tb_prob_drv
    percentiles    cl_mt_it_for_only_nbdgPercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    ______________________________________    ________________________________

        0.1                          0                                     NaN               
          1                          0                                     NaN               
          5                          0                                     NaN               
         10                          0                                     NaN               
         15                          0                                     NaN               
         20                          0                                     NaN               
         25                          0                                     NaN               
         35                          0                                     NaN               
         50                          0                                     NaN               
         65                          0                                     NaN               
         75                          0                                     NaN               
         80                          0                                     NaN               
         85                          0                                     NaN               
         90                          0                                     NaN               
         95                          0                                     NaN               
         99                          0                                     NaN               
       99.9                          0                                     NaN               

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_it_inf_only_nbdg
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
    0.1673

fl_choice_sd
    0.3732

fl_choice_coefofvar
    2.2312

fl_choice_prob_zero
    0.8327

fl_choice_prob_below_zero
     0

fl_choice_prob_above_zero
    0.1673

fl_choice_prob_max
    0.1673

tb_prob_drv
    percentiles    cl_mt_it_inf_only_nbdgPercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    ______________________________________    ________________________________

        0.1                          0                                      0                
          1                          0                                      0                
          5                          0                                      0                
         10                          0                                      0                
         15                          0                                      0                
         20                          0                                      0                
         25                          0                                      0                
         35                          0                                      0                
         50                          0                                      0                
         65                          0                                      0                
         75                          0                                      0                
         80                          0                                      0                
         85                          1                                      1                
         90                          1                                      1                
         95                          1                                      1                
         99                          1                                      1                
       99.9                          1                                      1                

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_it_frin_brr_nbdg
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
    0.3349

fl_choice_sd
    0.4720

fl_choice_coefofvar
    1.4091

fl_choice_prob_zero
    0.6651

fl_choice_prob_below_zero
     0

fl_choice_prob_above_zero
    0.3349

fl_choice_prob_max
    0.3349

tb_prob_drv
    percentiles    cl_mt_it_frin_brr_nbdgPercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    ______________________________________    ________________________________

        0.1                          0                                      0                
          1                          0                                      0                
          5                          0                                      0                
         10                          0                                      0                
         15                          0                                      0                
         20                          0                                      0                
         25                          0                                      0                
         35                          0                                      0                
         50                          0                                      0                
         65                          0                                      0                
         75                          1                                      1                
         80                          1                                      1                
         85                          1                                      1                
         90                          1                                      1                
         95                          1                                      1                
         99                          1                                      1                
       99.9                          1                                      1                

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_it_fr_brrsv_nbdg
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
    0.2112

fl_choice_sd
    0.4082

fl_choice_coefofvar
    1.9325

fl_choice_prob_zero
    0.7888

fl_choice_prob_below_zero
     0

fl_choice_prob_above_zero
    0.2112

fl_choice_prob_max
    0.2112

tb_prob_drv
    percentiles    cl_mt_it_fr_brrsv_nbdgPercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    ______________________________________    ________________________________

        0.1                          0                                      0                
          1                          0                                      0                
          5                          0                                      0                
         10                          0                                      0                
         15                          0                                      0                
         20                          0                                      0                
         25                          0                                      0                
         35                          0                                      0                
         50                          0                                      0                
         65                          0                                      0                
         75                          0                                      0                
         80                          1                                      1                
         85                          1                                      1                
         90                          1                                      1                
         95                          1                                      1                
         99                          1                                      1                
       99.9                          1                                      1                

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Summary Statistics for: cl_mt_it_frmsavng_only
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
fl_choice_mean
    0.2866

fl_choice_sd
    0.4522

fl_choice_coefofvar
    1.5778

fl_choice_prob_zero
    0.7134

fl_choice_prob_below_zero
     0

fl_choice_prob_above_zero
    0.2866

fl_choice_prob_max
    0.2866

tb_prob_drv
    percentiles    cl_mt_it_frmsavng_onlyPercentileValues    fracOfSumHeldBelowThisPercentile
    ___________    ______________________________________    ________________________________

        0.1                          0                                      0                
          1                          0                                      0                
          5                          0                                      0                
         10                          0                                      0                
         15                          0                                      0                
         20                          0                                      0                
         25                          0                                      0                
         35                          0                                      0                
         50                          0                                      0                
         65                          0                                      0                
         75                          1                                      1                
         80                          1                                      1                
         85                          1                                      1                
         90                          1                                      1                
         95                          1                                      1                
         99                          1                                      1                
       99.9                          1                                      1                

xxx All Variables PERCENTILES AND STATS xxx
tb_outcomes_meansdperc: mean, sd, percentiles
                                     mean        sd       coefofvar       min        max        pYis0       pYls0      pYgr0      pYisMINY      pYisMAXY        p0_1         p1          p5         p10          p15         p20         p25          p35          p50           p65         p75         p80        p85        p90       p95       p99      p99_9 
                                   ________    _______    _________    _________    ______    _________    _______    _______    __________    __________    __________    _______    ________    ________    _________    ________    ________    _________    __________    _________    ________    _______    _______    _______    ______    ______    ______

    cl_mt_coh                        4.0793     5.4532      1.3368           -20    57.277    0.0019445    0.15101    0.84705      0.004068    4.7341e-14           -20    -16.086     -5.3474      -1.333    -0.028344     0.97526      1.7781       3.2835        4.7889       5.9933      6.5954     7.0972     7.9001     9.3051    11.814    17.334     24.56
    cl_mt_pol_a                     -2.3898     4.3018     -1.8001       -21.899    50.361            0     0.7175     0.2825    3.2789e-14    3.7664e-33       -21.868    -21.403     -10.784     -6.5712      -5.5958     -4.3745     -4.0855      -2.6555       -1.0984      -0.1044     0.05625    0.12088    0.20002    0.31482    1.2406    5.2797    10.986
    cl_mt_pol_k                      4.6296     2.1437     0.46304     5.018e-07    22.244            0          0          1     4.043e-14    1.2448e-12    1.6058e-06     1.3094      2.0037      2.4585       2.7516      2.9055      3.1758        3.688        4.3581       4.8279      5.5122     5.8438     6.5308     7.3665    8.8533    12.001    15.755
    cl_mt_pol_c                      1.7428    0.49051     0.28145          0.02    7.9469            0          0          1      0.004068    4.7341e-14          0.02     1.1156      1.2029      1.2652       1.3151      1.3649      1.4086       1.4771        1.5706       1.6579       2.185     2.2264     2.3009     2.4168     2.632    3.1203    3.7567
    cl_mt_pol_a_principleonly       -2.2117     3.9994     -1.8083           -20    49.132            0     0.7175     0.2825    3.3681e-12    3.7664e-33       -19.998    -19.764     -10.002     -6.1251      -5.2051     -4.1033     -3.8298      -2.4897       -1.0305    -0.095346    0.054878    0.11793    0.19514    0.30714    1.2104    5.1509    10.718
    cl_mt_pol_b_bridge             -0.75473     2.7704     -3.6707           -20         0      0.84899    0.15101          0      0.004068       0.84899           -20    -16.086     -5.3474      -1.333    -0.028344           0           0            0             0            0           0          0          0          0         0         0         0
    cl_mt_pol_inf_borr_nobridge    -0.12951    0.48435     -3.7398       -19.982         0      0.49778    0.50222          0    4.2601e-11       0.49778        -6.251    -2.4176    -0.41196    -0.24557     -0.19096    -0.16078    -0.11984    -0.072398    -0.0022809            0           0          0          0          0         0         0         0
    cl_mt_pol_for_borr              -1.6535     1.9996     -1.2093         -14.5         0      0.45384    0.54616          0    2.8854e-05       0.45384           -10         -7        -5.5          -4           -4          -4        -2.5         -2.5            -1            0           0          0          0          0         0         0         0
    cl_mt_pol_for_save              0.32604     1.4118      4.3302             0    49.132      0.50222          0    0.49778       0.50222    3.7664e-33             0          0           0           0            0           0           0            0             0     0.072759     0.13601    0.18047      0.236    0.35972    1.4497    6.4837    17.536
    cl_mt_it_for_only_nbdg                0          0         NaN             0         0            1          0          0             1             1             0          0           0           0            0           0           0            0             0            0           0          0          0          0         0         0         0
    cl_mt_it_inf_only_nbdg          0.16727    0.37322      2.2312             0         1      0.83273          0    0.16727       0.83273       0.16727             0          0           0           0            0           0           0            0             0            0           0          0          1          1         1         1         1
    cl_mt_it_frin_brr_nbdg          0.33495    0.47197      1.4091             0         1      0.66505          0    0.33495       0.66505       0.33495             0          0           0           0            0           0           0            0             0            0           1          1          1          1         1         1         1
    cl_mt_it_fr_brrsv_nbdg          0.21121    0.40817      1.9325             0         1      0.78879          0    0.21121       0.78879       0.21121             0          0           0           0            0           0           0            0             0            0           0          1          1          1         1         1         1
    cl_mt_it_frmsavng_only          0.28657    0.45216      1.5778             0         1      0.71343          0    0.28657       0.71343       0.28657             0          0           0           0            0           0           0            0             0            0           1          1          1          1         1         1         1

xxx All Variables Fraction of Y Held up to Percentile xxx
tb_outcomes_fracheld: fraction of asset/income/etc held by hh up to this percentile
                                   fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                                   __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh                       -0.019945    -0.046476    -0.14254    -0.17788     -0.18502     -0.17832      -0.1622     -0.094037    0.052969      0.26464      0.41607      0.49798      0.58225      0.68637      0.81436      0.95061       0.99344  
    cl_mt_pol_a                     0.0094707     0.090889     0.34719     0.51863      0.64274      0.74308      0.83261       0.95764      1.0645       1.0992          1.1       1.0981       1.0948       1.0894       1.0777       1.0324        1.0055  
    cl_mt_pol_k                    3.9669e-10    0.0015462    0.016297    0.041142     0.068847     0.099412      0.13396       0.20637     0.33652      0.48407      0.59791      0.65563       0.7247      0.79943      0.88404       0.9701        0.9961  
    cl_mt_pol_c                    4.6683e-05    0.0049473     0.03168    0.068149      0.10292       0.1435      0.18628       0.26429      0.3973      0.53478        0.657      0.71832      0.78057      0.84481      0.91735       0.9806       0.99775  
    cl_mt_pol_a_principleonly       0.0090436     0.090977     0.34648     0.52019      0.64596      0.74614      0.83619       0.96144      1.0698       1.1047       1.1054       1.1034          1.1       1.0943       1.0819       1.0341        1.0058  
    cl_mt_pol_b_bridge                 0.1078       0.2512     0.77041      0.9614            1            1            1             1           1            1            1            1            1            1            1            1             1  
    cl_mt_pol_inf_borr_nobridge      0.058832      0.33681     0.57016     0.68705      0.77028      0.83342      0.88773       0.96263     0.99998            1            1            1            1            1            1            1             1  
    cl_mt_pol_for_borr              0.0090671      0.10642     0.32009     0.66784      0.66784      0.66784      0.90404       0.90404           1            1            1            1            1            1            1            1             1  
    cl_mt_pol_for_save                      0            0           0           0            0            0            0             0           0     0.018377     0.050555     0.074072      0.10592      0.15241      0.25395      0.63415       0.98528  
    cl_mt_it_for_only_nbdg                NaN          NaN         NaN         NaN          NaN          NaN          NaN           NaN         NaN          NaN          NaN          NaN          NaN          NaN          NaN          NaN           NaN  
    cl_mt_it_inf_only_nbdg                  0            0           0           0            0            0            0             0           0            0            0            0            1            1            1            1             1  
    cl_mt_it_frin_brr_nbdg                  0            0           0           0            0            0            0             0           0            0            1            1            1            1            1            1             1  
    cl_mt_it_fr_brrsv_nbdg                  0            0           0           0            0            0            0             0           0            0            0            1            1            1            1            1             1  
    cl_mt_it_frmsavng_only                  0            0           0           0            0            0            0             0           0            0            1            1            1            1            1            1             1  

End Profiler and Timer

End Timer

if (bl_time)
    toc;
end

% End Profile
if (it_param_set == 7)
    profile off
    profile viewer
    st_file_name = [st_profile_prefix st_profile_name_main st_profile_suffix];
    profsave(profile('info'), strcat(st_profile_path, st_file_name));
end
end
ans = 

  Map with properties:

        Count: 29
      KeyType: char
    ValueType: any