Skip to content
Snippets Groups Projects
Select Git revision
  • c932738d1e3778ae61c55d8eb825f7dea2d85a7c
  • 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

check_list_of_variables.m

Blame
  • Forked from Dynare / dynare
    Source project has a limited visibility.
    dm7.mod 491 B
    var C K r w N tau I;
    varexo e;
    
    parameters alph bet delt thet tau_m rho;
    alph = 0.3;
    bet = 0.96;
    thet = 0.3;
    delt = 0.05;
    tau_m = 0.35;
    rho = 0.8;
    
    model;
    C = C(+1)/(bet*(r(+1)+1-delt));
    I = K(-1)^alph*N^(1-alph)-C;
    K = I+(1-delt)*K(-1);
    N = 1-(1-thet)*C/(thet*w);
    r = (1-tau)*alph*(K(-1)/N)^(alph-1);
    w = (1-tau)*(1-alph)*(K(-1)/N)^alph;
    tau = (1-rho)*tau_m + rho*tau(-1)+e;
    end;
    
    initval;
    C=0.2;
    I=0.02;
    K=0.5;
    N=0.18;
    r=0.09;
    w=0.6;
    tau=0.35;
    e=0;
    end;
    
    vcov = [0.007208];
    
    order=7;