Updated header of dynare_solve.m

time-shift
Johannes Pfeifer 2016-08-21 11:47:52 +02:00
parent 14ab41e414
commit e7b8222144
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
function [x,info,fvec,fjac] = dynare_solve(func,x,options,varargin)
% function [x,info] = dynare_solve(func,x,options,varargin)
% function [x,info,fvec,fjac] = dynare_solve(func,x,options,varargin)
% proposes different solvers
%
% INPUTS
@ -11,6 +11,8 @@ function [x,info,fvec,fjac] = dynare_solve(func,x,options,varargin)
% OUTPUTS
% x: solution
% info=1: the model can not be solved
% fvec: Function value (used for debugging when check=1)
% fjac: Jacobian (used for debugging when check=1)
%
% SPECIAL REQUIREMENTS
% none