Lines Matching refs:signal
9 The signal processing chain can thus be tested and developed in a Python environment and then easil…
103 If you use scipy signal processing functions:
105 > from scipy import signal
145 …signal should be `blockSize`. `blockSize` was inferred from the size of the state array : `numTaps…
153 > filtered_x = signal.lfilter([3,2,1.], 1.0, [1,2,3,4,5,6,7,8,9,10])
162 Let's define a signal you will use for the FFT.
165 > signal = np.cos(2 * np.pi * np.arange(nb) / nb)
169 …the C API, we are not using complex numbers in the wrapper. So a complex signal must be converted …
171 > signalR = imToReal1D(signal)
182 You compute the FFT of the signal with:
217 This signal was created for a master thesis: