Print model equations
Posted: Sun May 29, 2016 1:32 am
Hello,
Is there a way to print my model equations with the values of their parameters plugged in?
For example, in my .mod code I have:
Is there a command to print
?
Thanks in advance,
Matheus
Is there a way to print my model equations with the values of their parameters plugged in?
For example, in my .mod code I have:
parameters a;
var x;
a = 0.9;
model;
x = a*x(-1);
end;
Is there a command to print
x = 0.9*x(-1)
?
Thanks in advance,
Matheus