@@ -103,10 +103,6 @@ def nichols_plot(syslist, omega=None, grid=True):
103
103
def nichols_grid (cl_mags = None , cl_phases = None ):
104
104
"""Nichols chart grid
105
105
106
- Usage
107
- =====
108
- nichols_grid()
109
-
110
106
Plots a Nichols chart grid on the current axis, or creates a new chart
111
107
if no plot already exists.
112
108
@@ -119,8 +115,8 @@ def nichols_grid(cl_mags=None, cl_phases=None):
119
115
Array of closed-loop phases defining the iso-phase lines on a custom
120
116
Nichols chart. Must be in the range -360 < cl_phases < 0
121
117
122
- Return values
123
- -------------
118
+ Returns
119
+ -------
124
120
None
125
121
"""
126
122
# Default chart size
@@ -211,19 +207,15 @@ def closed_loop_contours(Gcl_mags, Gcl_phases):
211
207
Gol is an open-loop transfer function, and Gcl is a corresponding
212
208
closed-loop transfer function.
213
209
214
- Usage
215
- =====
216
- contours = closed_loop_contours(Gcl_mags, Gcl_phases)
217
-
218
210
Parameters
219
211
----------
220
212
Gcl_mags : array-like
221
213
Array of magnitudes of the contours
222
214
Gcl_phases : array-like
223
215
Array of phases in radians of the contours
224
216
225
- Return values
226
- -------------
217
+ Returns
218
+ -------
227
219
contours : complex array
228
220
Array of complex numbers corresponding to the contours.
229
221
"""
@@ -241,10 +233,6 @@ def m_circles(mags, phase_min=-359.75, phase_max=-0.25):
241
233
Gol is an open-loop transfer function, and Gcl is a corresponding
242
234
closed-loop transfer function.
243
235
244
- Usage
245
- =====
246
- contours = m_circles(mags, phase_min, phase_max)
247
-
248
236
Parameters
249
237
----------
250
238
mags : array-like
@@ -254,8 +242,8 @@ def m_circles(mags, phase_min=-359.75, phase_max=-0.25):
254
242
phase_max : degrees
255
243
Maximum phase in degrees of the N-circles
256
244
257
- Return values
258
- -------------
245
+ Returns
246
+ -------
259
247
contours : complex array
260
248
Array of complex numbers corresponding to the contours.
261
249
"""
@@ -271,10 +259,6 @@ def n_circles(phases, mag_min=-40.0, mag_max=12.0):
271
259
Gol is an open-loop transfer function, and Gcl is a corresponding
272
260
closed-loop transfer function.
273
261
274
- Usage
275
- =====
276
- contours = n_circles(phases, mag_min, mag_max)
277
-
278
262
Parameters
279
263
----------
280
264
phases : array-like
@@ -284,8 +268,8 @@ def n_circles(phases, mag_min=-40.0, mag_max=12.0):
284
268
mag_max : dB
285
269
Maximum magnitude in dB of the N-circles
286
270
287
- Return values
288
- -------------
271
+ Returns
272
+ -------
289
273
contours : complex array
290
274
Array of complex numbers corresponding to the contours.
291
275
"""
0 commit comments