Object Reference : Object View and Procedure Reference : Model
  
 
append
Append a specification line to a model.
Syntax
model_name.append text
Type the text to be added after the append keyword.
Examples
model macro2
macro2.merge eq_m1
macro2.merge eq_gdp
macro2.append assign @all f
macro1.append @trace gdp
macro2.solve
The first line declares a model object. The second and third lines merge existing equations into the model. The fourth and fifth line appends an assign statement and a trace of GDP to the model. The last line solves the model.
Cross-references
For details, see “Models”.