| solvers | R Documentation |
This function either checks whether a solver method exists or provides bidirectional translation between R's deSolve package solvers and Julia's DifferentialEquations.jl solvers.
solvers(method, from = c("R", "Julia"), to = NULL, show_info = FALSE)
method |
Character string of solver name |
from |
Character string indicating source language: "R" or "Julia" |
to |
Character string indicating target language: "R" or "Julia" |
show_info |
Logical, whether to display additional solver information |
Character vector of equivalent solver(s) or list with details
# Translate from R to Julia
solvers("euler", from = "R", to = "Julia")
solvers("rk45dp6", from = "R", to = "Julia")
# Translate from Julia to R
solvers("Tsit5", from = "Julia", to = "R")
solvers("DP5", from = "Julia", to = "R", show_info = TRUE)
# List all available solvers
solvers(from = "R")
solvers(from = "Julia")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.