mcode | R Documentation |
This is a convenience function that ultimately calls mread()
.
Model code is written to a file and read back in using mread()
.
mcode(model, code, project = getOption("mrgsolve.project", tempdir()), ...)
mcode_cache(
model,
code,
project = getOption("mrgsolve.project", tempdir()),
...
)
model |
model name. |
code |
character string specifying a |
project |
project directory for the model. |
... |
passed to |
Note that the arguments are in slightly different order than
mread()
. The default project
is tempdir()
.
See the mread()
help topic for discussion about caching
compilation results with mcode_cache()
.
mread()
, mread_cache()
## Not run:
code <- '
$CMT DEPOT CENT
$PKMODEL ncmt=1, depot=TRUE
$MAIN
double CL = 1;
double V = 20;
double KA = 1;
'
mod <- mcode("example", code, compile = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.