| rxIsNonStiff | R Documentation |
Returns TRUE for methods that are designed exclusively for non-stiff
systems. Solvers like "lsoda" and "liblsoda" that automatically switch
between stiff and non-stiff algorithms return FALSE, as do all stiff-only
methods.
rxIsNonStiff(method)
method |
A character vector of method names or an integerish vector of
method codes (as returned by |
Switchers ("lsoda" = 1, "liblsoda" = 2) and the inductive linearisation
solver ("indLin" = 3) are excluded from both rxIsStiff() and
rxIsNonStiff().
A logical vector the same length as method. TRUE if the
corresponding method is a purely non-stiff solver.
rxIsStiff(), rxIsImplicit(), odeMethodToInt()
rxIsNonStiff("dop853") # TRUE
rxIsNonStiff("lsoda") # FALSE (switches)
rxIsNonStiff("bdf") # FALSE (stiff-only)
rxIsNonStiff(c("lsode", "cvode", "bs32")) # TRUE FALSE TRUE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.