dsmodel objects support the following methods, which may be helpful for advanced users.
dsmodel$points(format="list", filter="all") returns a list of the points in the model.
filterValid values are "all", "fixed", "attractor", and "sim".
"sim" returns only points generated by simattractors.
formatIf "list", return a list with x, y, col, and ind fields holding
the coordinates, color, and index. Other formats are "objects", returning a vector of dspoint objects,
and "pairs", returning a list of pairs of coordinates.
dsmodel$display() forces the model to re-render the plot from scratch. Primarily useful if display=TRUE was set.
dsmodel$basins() returns a list of which fixed points have a basin. This requires simbasins() to have been composed
with the model, and is primarily useful when testing if a dynamical system is globally stable. In that case, the method
will return a list of length 1. The list will contain the indices of the fixed points, as given in
dsmodel$points(format="list", filter="attractor"). An index of 0 means that some points never moved within
epsilon of an attractor.
dsmodel$sim.is.stable() attempts to determine if the system is stable by simulation. If no attractors have
been composed with the model, simattractors() is composed with defaults. If simbasins has not
been composed with the model, it is be composed with defaults. If every point is drawn to a single attractor, the
system has been deemed stable. Note that boundary points on the range will not be tested.