list_eq {gEcon}R Documentation

List model equations

Description

The list_eq function returns equations according to the specified indices.

Usage

list_eq(model, eq_idx = NULL)

Arguments

model

an object of gecon_model class.

eq_idx

an integer/numeric value/vector specifying the indices of requested equations.

Value

A character (one-column) matrix with requested equations.

Examples

# copy the example to the current working directory
file.copy(from = file.path(system.file("examples", package = "gEcon"),
          "rbc.gcn"), to = getwd())

# make and load the model
rbc <- make_model("rbc.gcn")

# get the 3rd and the 5th model equation
list_eq(rbc, c(3, 5))

[Package gEcon version 1.1.0 Index]