| rxTrans {RxODE} | R Documentation |
This function translates the model to C code, if needed
rxTrans( model, extraC = NULL, modelPrefix = "", md5 = "", modName = NULL, modVars = FALSE, ... ) ## Default S3 method: rxTrans( model, extraC = NULL, modelPrefix = "", md5 = "", modName = NULL, modVars = FALSE, ... ) ## S3 method for class 'character' rxTrans( model, extraC = NULL, modelPrefix = "", md5 = "", modName = NULL, modVars = FALSE, ... )
model |
This is the ODE model specification. It can be:
(see also the |
extraC |
Extra c code to include in the model. This can be
useful to specify functions in the model. These C functions
should usually take |
modelPrefix |
Prefix of the model functions that will be compiled to make sure that multiple RxODE objects can coexist in the same R session. |
md5 |
Is the md5 of the model before parsing, and is used to
embed the md5 into DLL, and then provide for functions like
|
modName |
a string to be used as the model name. This string
is used for naming various aspects of the computations,
including generating C symbol names, dynamic libraries,
etc. Therefore, it is necessary that |
modVars |
returns the model variables instead of the named vector of translated properties. |
... |
Ignored parameters. |
a named vector of translated model properties
including what type of jacobian is specified, the C function prefixes,
as well as the C functions names to be called through the compiled model.
Matthew L.Fidler