Description Usage Arguments Value Author(s) Examples
Esta funci<c3><b3>n representa el campo que se va a graficar.
1 |
t |
Variable independiente. |
y_in |
Variables |
parameters |
Par<c3><a1>metros |
Retorna una lista que conforma al campo que se va a graficar.
Pablo Millan y Oscar Fonseca
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (t, y_in, parameters)
{
dy = numeric(length(y_in))
for (i in 1:length(dy)) {
for (j in 1:length(dy)) {
assign(vars[j], y_in[j])
}
dy[i] = eval(parse(text = parameters[i]))
}
return(list(dy))
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.