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
Copy file name to clipboardExpand all lines: docs/src/lib/nonlinear.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -238,7 +238,6 @@ plot(f1,f2, size=(1300,800))
238
238
- Discrete-time support.
239
239
- Basic support for nonlinear analysis such as stability proof through the circle criterion etc. In particular, predefined nonlinear functions may specify sector bounds for the gain, required by the circle-criterion calculations.
Create a constant-offset nonlinearity `x -> x + val`.
268
-
269
-
$nonlinear_warning
270
-
271
-
# Example:
272
-
To create a linear system that operates around operating point `y₀, u₀`, use
273
-
```julia
274
-
offset_sys = offset(y₀) * sys * offset(-u₀)
275
-
```
276
-
note the sign on the offset `u₀`. This ensures that `sys` operates in the coordinates
277
-
`Δu = u-u₀, Δy = y-y₀` and the inputs and outputs to the offset system are in their non-offset coordinate system. If the system is linearized around `x₀`, `y₀` is given by `C*x₀`. Additional information and an example is available here https://juliacontrol.github.io/ControlSystems.jl/latest/lib/nonlinear/#Non-zero-operating-point
Create a constant-offset nonlinearity `x -> x + val`.
51
+
52
+
$nonlinear_warning
53
+
54
+
# Example:
55
+
To create a linear system that operates around operating point `y₀, u₀`, use
56
+
```julia
57
+
offset_sys = offset(y₀) * sys * offset(-u₀)
58
+
```
59
+
note the sign on the offset `u₀`. This ensures that `sys` operates in the coordinates
60
+
`Δu = u-u₀, Δy = y-y₀` and the inputs and outputs to the offset system are in their non-offset coordinate system. If the system is linearized around `x₀`, `y₀` is given by `C*x₀`. Additional information and an example is available here https://juliacontrol.github.io/ControlSystems.jl/latest/lib/nonlinear/#Non-zero-operating-point
0 commit comments