function indcorr = stab_map_2(x,alpha2, pvalue_crit, fnam, dirname,xparam1,figtitle) % function stab_map_2(x, alpha2, pvalue, fnam, dirname,xparam1) % % Written by Marco Ratto % Joint Research Centre, The European Commission, % (http://eemc.jrc.ec.europa.eu/), % marco.ratto@jrc.it % % Reference: % M. Ratto, Global Sensitivity Analysis for Macroeconomic models, MIMEO, 2006. % Copyright (C) 2012-2013 Dynare Team % % This file is part of Dynare. % % Dynare is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % Dynare is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; without even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the % GNU General Public License for more details. % % You should have received a copy of the GNU General Public License % along with Dynare. If not, see . %global bayestopt_ estim_params_ dr_ options_ ys_ fname_ global bayestopt_ estim_params_ options_ oo_ M_ npar=size(x,2); nsam=size(x,1); ishock= npar>estim_params_.np; nograph = options_.nograph; if nargin<4, fnam=''; end if nargin<5, dirname=''; nograph=1; end if nargin<6, xparam1=[]; end if nargin<7, figtitle=fnam; end ys_ = oo_.dr.ys; dr_ = oo_.dr; fname_ = M_.fname; nshock = estim_params_.nvx; nshock = nshock + estim_params_.nvn; nshock = nshock + estim_params_.ncx; nshock = nshock + estim_params_.ncn; [c0, pvalue] = corrcoef(x); c00=tril(c0,-1); fig_nam_=[fname_,'_',fnam,'_corr_']; ifig=0; j2=0; if ishock==0 npar=estim_params_.np; if ~isempty(xparam1), xparam1=xparam1(nshock+1:end); end else npar=estim_params_.np+nshock; end disp([' ']) disp(['Correlation analysis for ',fnam]) indcorr = []; for j=1:npar, i2=find(abs(c00(:,j))>alpha2); if length(i2)>0, for jx=1:length(i2), if pvalue(j,i2(jx))',num2str(alpha2),' found for ',fnam]) end %close all