Skip to content
Snippets Groups Projects
Select Git revision
  • 2134146033ee435fd54b21b953483fc7da372c71
  • master default
  • nlf-fixes
  • newton-quadratic-equation-solver
  • nlf-fixes-r
  • nls-fixes
  • sep-fixes
  • sep
  • use-dprior
  • ep-sparse
  • rebase-1
  • parfor
  • reset-seed-in-unit-tests
  • remove-persistent-variables
  • nonlinear-filter-fixes
  • pac-mce-with-composite-target
  • 6.x
  • dprior
  • covariance-quadratic-approximation
  • benchmark-ec
  • kalman_mex
  • 5.5
  • 5.4
  • 5.3
  • 5.2
  • 5.1
  • 5.0
  • 5.0-rc1
  • 4.7-beta3
  • 4.7-beta2
  • 4.7-beta1
  • 4.6.4
  • 4.6.3
  • 4.6.2
  • 4.6.1
  • 4.6.0
  • 4.6.0-rc2
  • 4.6.0-rc1
  • 4.6-beta1
  • 4.5.7
  • 4.5.6
41 results

NumericalInitialization.cc

Blame
  • Forked from Dynare / dynare
    Source project has a limited visibility.
    test6.mod 265 B
    var y,x;
    varexo u,v;
    parameters a, b, c, d, e, m, n;
    
    a=-0.8;
    b=0.9;
    c=0.9;
    d=1;
    e=1;
    m=50;
    n=0.2;
    
    model;
    x=b*x(-1)+u;
    a*y(+1)+y-(a*b^3+1)*x(-1)^3-3*a*b*x(-1)*u^2-3*a*b^2*x(-1)^2*u-a*u^3-a-v^2;
    end;
    
    initval;
    x=0;
    y=0;
    u=0;
    v=0;
    end;
    
    vcov=[1 0; 0 1];
    
    order = 3;