# Plot the velocity field, nullclines and several trajectories.
vanDerPol_flowField <- flowField(vanDerPol,
xlim = c(-5, 5),
ylim = c(-5, 5),
parameters = 3,
points = 15,
add = FALSE)
y0 <- matrix(c(2, 0, 0, 2, 0.5, 0.5), 3, 2,
byrow = TRUE)
# \donttest{
vanDerPol_nullclines <- nullclines(vanDerPol,
xlim = c(-5, 5),
ylim = c(-5, 5),
parameters = 3,
points = 500)
# }
vanDerPol_trajectory <- trajectory(vanDerPol,
y0 = y0,
tlim = c(0, 10),
parameters = 3)
# Plot x and y against t
vanDerPol_numericalSolution <- numericalSolution(vanDerPol,
y0 = c(4, 2),
tlim = c(0, 100),
parameters = 3)
# Determine the stability of the equilibrium point
vanDerPol_stability <- stability(vanDerPol,
ystar = c(0, 0),
parameters = 3)
Run the code above in your browser using DataLab