changeGrowthStatus (Model)
Change growth status of the model
Syntax
m = changeGrowthStatus(m, growth)
Input arguments
m [ Model ]
Model object whose growth status will be changed.
growth [ true | false ]
New growth status for model
m; ifgrowth=false, the steady state of the model will be calculated assuming no variable is changing over time in steady state; ifgrowth=true, variables are allowed to change over time at a constant first difference or a constant rate of growth.
Output arguments
m [ Model ]
Model object with a new
growthstatus.
Description
Examples
Turn of growth in productivity (gross rate of change), and recalculate the steady state of the model.
m.roc_a = 1;
m = changeGrowthStatus(m, false);
m = steady(m);