View source: R/findEquilibrium.R
findEquilibrium | R Documentation |
Searches for an equilibium point of a system, taking the starting point of the search as a user specified location. On identifying such a point, a classification is performed, and an informatively shaped point can be added to the plot.
findEquilibrium( deriv, y0 = NULL, parameters = NULL, system = "two.dim", tol = 1e-16, max.iter = 50, h = 1e-06, plot.it = FALSE, summary = TRUE, state.names = if (system == "two.dim") c("x", "y") else "y" )
deriv |
A function computing the derivative at a point for the ODE
system to be analysed. Discussion of the required structure of these
functions can be found in the package vignette, or in the help file for the
function |
y0 |
The starting point of the search. In the case of a one-dimensional
system, this should be a |
parameters |
Parameters of the ODE system, to be passed to |
system |
Set to either |
tol |
The tolerance for the convergence of the search algorithm.
Defaults to |
max.iter |
The maximum allowed number of iterations of the search
algorithm. Defaults to |
h |
Step length used to approximate the derivative(s). Defaults to
|
plot.it |
Logical. If |
summary |
Set to either |
state.names |
The state names for |
Returns a list with the following components (the exact make up is
dependent on the value of system
):
classification |
The classification of the identified equilibrium point. |
Delta |
In the two-dimensional system case, value of the Jacobian's determinant at the equilibrium point. |
deriv |
As per input. |
discriminant |
In the one-dimensional system case, the value of the
discriminant used in perturbation analysis to assess stability. In the
two-dimensional system case, the value of |
eigenvalues |
In the two-dimensional system case, the value of the Jacobian's eigenvalues at the equilibrium point. |
eigenvectors |
In the two-dimensional system case, the value of the Jacobian's eigenvectors at the equilibrium point. |
jacobian |
In the two-dimensional system case, the Jacobian at the equilibrium point. |
h |
As per input. |
max.iter |
As per input. |
parameters |
As per input. |
plot.it |
As per input. |
summary |
As per input. |
system |
As per input. |
tr |
In the two-dimensional system case, the value of the Jacobian's trace at the equilibrium point. |
tol |
As per input. |
y0 |
As per input. |
ystar |
The location of the identified equilibrium point. |
Michael J Grayling, Stephen P Ellner, John M Guckenheimer
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.