File: test6.mod

package info (click to toggle)
dynare 4.6.3-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 74,896 kB
  • sloc: cpp: 98,057; ansic: 28,929; pascal: 13,844; sh: 5,947; objc: 4,236; yacc: 4,215; makefile: 2,583; lex: 1,534; fortran: 877; python: 647; ruby: 291; lisp: 152; xml: 22
file content (27 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;