# Plot the velocity field, nullclines and several trajectories
logistic_flowField <- flowField(logistic,
xlim = c(0, 5),
ylim = c(-1, 3),
parameters = c(1, 2),
points = 21,
system = "one.dim",
add = FALSE)
logistic_nullclines <- nullclines(logistic,
xlim = c(0, 5),
ylim = c(-1, 3),
parameters = c(1, 2),
system = "one.dim")
logistic_trajectory <- trajectory(logistic,
y0 = c(-0.5, 0.5, 1.5, 2.5),
tlim = c(0, 5),
parameters = c(1, 2),
system = "one.dim")
# Plot the phase portrait
logistic_phasePortrait <- phasePortrait(logistic,
ylim = c(-0.5, 2.5),
parameters = c(1, 2),
points = 10,
frac = 0.5)
# Determine the stability of the equilibrium points
logistic_stability_1 <- stability(logistic,
ystar = 0,
parameters = c(1, 2),
system = "one.dim")
logistic_stability_2 <- stability(logistic,
ystar = 2,
parameters = c(1, 2),
system = "one.dim")
Run the code above in your browser using DataLab