// and log-frequency.
plt.figure(figsize=(8, 2))
plt.imshow(np.squeeze(Sx[0,order1,:]), aspect="auto")
plt.title("Scattering Order 1")
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Finally, we plot the second-order scattering coefficients. These are also
After Change
// average of the original signal at the scale `2**J`.
plt.figure(figsize=(8, 2))
plt.plot(Sx[order0][0])
plt.title("Zeroth-order scattering")
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////