trunk preprocessor: M_.NNZDerivatives is now a column vector instead of a matrix

git-svn-id: https://www.dynare.org/svn/dynare/trunk@2794 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
sebastien 2009-06-29 10:52:57 +00:00
parent e7c9ec55e9
commit a05fa888b0
1 changed files with 1 additions and 1 deletions

View File

@ -2348,7 +2348,7 @@ DynamicModel::writeOutput(ostream &output) const
output << "M_.params = repmat(NaN," << symbol_table.param_nbr() << ", 1);" << endl;
// Write number of non-zero derivatives
output << "M_.NNZDerivatives = zeros(3);" << endl
output << "M_.NNZDerivatives = zeros(3, 1);" << endl
<< "M_.NNZDerivatives(1) = " << NNZDerivatives[0] << ";" << endl
<< "M_.NNZDerivatives(2) = " << NNZDerivatives[1] << ";" << endl
<< "M_.NNZDerivatives(3) = " << NNZDerivatives[2] << ";" << endl;