- 28 Mar, 2013 16 commits
-
-
Houtan Bastani authored
-
Houtan Bastani authored
-
Sébastien Villemot authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
In addition to the already implemented selection mechanism using matlab's regular expressions, we allow the following syntax: a = ts{'GDP_@US,JP,FR@'}; to extract variables GDP_US, GDP_JP and GDP_FR from dynSeries object ts. If one of these variables does not exist, an error message is issued.
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
- 27 Mar, 2013 11 commits
-
-
Marco Ratto authored
Fixed spurious bugs when new MC smoother is invoked when an old one is already present in gsa results subfolders
-
Marco Ratto authored
-
Marco Ratto authored
2) better cleanup of remnants of remote parallel runs when Strategy ==1 3) for windows sessions eliminate the use of start, replaced by psexec -d instanced, to allow cleanup of .bat file 4) fix bug in Strategy==1 that was not properly cleaned by deleting new files on exit
-
Marco Ratto authored
2) Fix bug when local machine is accessed through the network in windows; 3) small bug fix in remote directory check;
-
Marco Ratto authored
2) cleanup slavejob files
-
Marco Ratto authored
-
Marco Ratto authored
2) fix in defining the list of files;
-
Marco Ratto authored
2) bug fix in security checks;
-
Marco Ratto authored
-
Johannes Pfeifer authored
Closes #290 and makes #314 obsolete as we store both auto- and cross-correlations
-
Johannes Pfeifer authored
-
- 25 Mar, 2013 2 commits
-
-
Sébastien Villemot authored
-
Sébastien Villemot authored
-
- 22 Mar, 2013 5 commits
-
-
Ferhat Mihoubi authored
-
Ferhat Mihoubi authored
This reverts commit f16a8b16.
-
Ferhat Mihoubi authored
-
Ferhat Mihoubi authored
-
Ferhat Mihoubi authored
-
- 21 Mar, 2013 6 commits
-
-
Johannes Pfeifer authored
1. The first call to set_prior overwrote the first column of estim_params_.var_endo storing the position of the variable with measurement error in M_.endo_names with the position in options_.var_obs. All subsequent calls to set_prior then lead to crashes. 2. At the same time, for correlations of ME, the first column of estim_params_.corrn still stored the position of the variable with measurement error in M_.endo_names. But subsequent calls to it were done as if it stored the position in options_.var_obs I introduced two new variables in estim_params_ storing the respective positions in var_obs so as to not necessitate changes in the preprocessors. 3. For cases of calibrated measurement error correlations, the covariance matrix was not updated. 4. Fixing a lot of smaller bugs related to measurement errors, including some copy and paste errors -
-
Johannes Pfeifer authored
Due to only using the diagonal of Sigma_e and the correlation matrix having ones on the diagonal, the diagonal entries of the covariance matrix are correctly built from recent draw. Later, when using the new draw for the correlations, only the correctly updated diagonal entries of Sigma_e are used.
-
Sébastien Villemot authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
Names for the results of basic operations on dynSeries objects was '--NA--'. The name of the result variables now keep track of the operations. For instance, if we have two dynSeries objects, ts1 and ts2, respectively holding two variables 'A1' and 'B1', then: - the name of the variable in ts3=ts1+ts2 is 'plus(A1,B1)' - the name of the variable in ts3=ts1-ts2 is 'minus(A1,B1)' - the name of the variable in ts3=ts1*ts2 is 'multiply(A1,B1)' - the name of the variable in ts3=ts1/ts2 is 'divide(A1,B1)' - the tex name of the variable in ts3=ts1+ts2 is '(A1+B1)' - the tex name of the variable in ts3=ts1-ts2 is '(A1-B1)' - the tex name of the variable in ts3=ts1*ts2 is '(A1*B1)' - the tex name of the variable in ts3=ts1/ts2 is '(A1/B1)'
-
Stéphane Adjemian authored
-