| igdx {gdxrrw} | R Documentation |
Initialize (i.e. load) the external GDX libraries that are required to interface with GDX data, and report on the status of the initialization.
igdx(gamsSysDir)
gamsSysDir |
a directory containing the external GDX libraries, typically the GAMS system directory. If this argument is omitted, no loading is done but we still report on the initialization status. |
The directory containing the external GDX libraries is also where we
look for the gams executable, so calling igdx prior to
calling gams ensures that the gams executable can be
located. Consider saving a .First function like the following to your
R workspace:
.First <- function() { library(gdxrrw) ; igdx("/your/GAMS/sysdir")}
Steve Dirkse. Maintainer: R@gams.com
## Not run:
igdx("C:\Program Files\gams23.6");
igdx("/usr/gams/23.6.3");
## End(Not run)
igdx();