Skip to content

Commit 0640aaa

Browse files
committed
simplify headers
to make them easier to find
1 parent 236866f commit 0640aaa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/src/man/creating_systems.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Creating Systems
2-
## Creating Transfer Functions
2+
## Transfer Functions
33
```@meta
44
DocTestSetup = quote
55
using ControlSystems
@@ -53,7 +53,7 @@ Continuous-time transfer function model
5353
The transfer functions created using this method will be of type `TransferFunction{SisoZpk}`.
5454

5555

56-
## ss - Creating State-Space Systems
56+
## State-Space Systems
5757
A state-space system is created using
5858
```julia
5959
ss(A,B,C,D) # Continuous-time system
@@ -99,7 +99,7 @@ Sample Time: 0.1 (seconds)
9999
Discrete-time transfer function model
100100
```
101101

102-
## Creating Delay Systems
102+
## Delay Systems
103103
The constructor [`delay`](@ref) creates a pure delay, which may be connected to a system by multiplication:
104104
```julia
105105
delay(1.2) # Pure delay or 1.2s
@@ -114,7 +114,7 @@ L = 1.2 # Delay time
114114
tf(1, [1, 1]) * exp(-L*s)
115115
```
116116

117-
## Creating Nonlinear Systems
117+
## Nonlinear Systems
118118
See [Nonlinear functionality](@ref).
119119

120120
## Simplifying systems

0 commit comments

Comments
 (0)