Object Reference : Object View and Procedure Reference : Model
  
 
model
Declare a model object.
Syntax
model model_name
The keyword model should be followed by a name for the model. To fill the model, you may use Model::append or Model::merge.
Examples
model macro
macro.append cs = 10+0.8*y(-1)
macro.append i = 0.7*(y(-1)-y(-2))
macro.append y = cs+i+g
declares an empty model named MACRO and adds three lines to MACRO.
Cross-references
See “Models” for a discussion of specifying and solving models in EViews.
See also Model::append, Model::merge and Model::solve.