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