| rxSplitPlusQ {RxODE} | R Documentation |
It uses the parser and does not disturb terms within other functions. For example:
rxSplitPlusQ(x, level = 0, mult = FALSE)
x |
Quoted R expression for splitting |
level |
Internal level of parsing |
mult |
boolean to split based on * and / expressions instead. By default this is turned off. |
a*exp(b+c)+d*log(e-f)-g*f
would return
c("a * exp(b + c)", "d * log(e - f)", "- g * f")
character vector of the split expressions
Matthew L. Fidler