@@ -92,18 +92,17 @@ class FrequencyResponseData(LTI):
9292
9393 Notes
9494 -----
95- The main data members are 'omega' and 'fresp', where 'omega' is a the 1D
96- arran yf frequency points and and 'fresp' is a 3D array, with the first
97- dimension corresponding to the output index of the FRD, the second
98- dimension corresponding to the input index, and the 3rd dimension
95+ The main data members are 'omega' and 'fresp', where 'omega' is a 1D array
96+ of frequency points and and 'fresp' is a 3D array of frequency responses,
97+ with the first dimension corresponding to the output index of the FRD, the
98+ second dimension corresponding to the input index, and the 3rd dimension
9999 corresponding to the frequency points in omega. For example,
100100
101101 >>> frdata[2,5,:] = numpy.array([1., 0.8-0.2j, 0.2-0.8j])
102102
103- means that the frequency response from the 6th input to the 3rd
104- output at the frequencies defined in omega is set to the array
105- above, i.e. the rows represent the outputs and the columns
106- represent the inputs.
103+ means that the frequency response from the 6th input to the 3rd output at
104+ the frequencies defined in omega is set to the array above, i.e. the rows
105+ represent the outputs and the columns represent the inputs.
107106
108107 A frequency response data object is callable and returns the value of the
109108 transfer function evaluated at a point in the complex plane (must be on
0 commit comments