You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compute the stability of a steady state (Returned as a `Bool`, with `true` indicating stability).
7
7
@@ -11,8 +11,8 @@ Arguments:
11
11
- `p`: The parameter set for which we want to compute stability.
12
12
- `sparse=false`: If we wish to create a sparse Jacobian for the stability computation.
13
13
- `ss_jac = steady_state_jac(u, rs; sparse=sparse)`: It is possible to pre-compute the Jacobian used for stability computation using `steady_state_jac`. If stability is computed for many states, precomputing the Jacobian may speed up evaluation.
14
-
- `t=Inf`: The time point at which stability is computed.
15
-
- `non_autonomous_war=true`: If the system is non-autonomous (e.g. a rate depends on t), a warning will be given. Set this to false to remove that. Alternatively, specify a nonInf value for `t`.
14
+
- `t = Inf`: The time point at which stability is computed.
15
+
- `non_autonomous_warn = true`: If the system is non-autonomous (e.g. a rate depends on t), a warning will be given. Set this to false to remove that. Alternatively, specify a nonInf value for `t`.
16
16
17
17
Example:
18
18
```julia
@@ -31,9 +31,10 @@ Notes:
31
31
y states (each being a `Vector`) is provided as `u`, stability is computed for each state separately.
!is_autonomous(rs) &&non_autonomous_war&&@warn"Attempting to compute stability for a non-autonomous system. Set `non_autonomous_war=false` to disable this warning."
37
+
!is_autonomous(rs) &&non_autonomous_warn&&@warn"Attempting to compute stability for a non-autonomous system. Set `non_autonomous_warn = false` to disable this warning."
37
38
38
39
# Because Jacobian currently requires u and p to be a normal vector.
0 commit comments