Time for action – plotting the Kaiser window

Let's plot the Kaiser window:

  1. Call the NumPy kaiser() function:
    window = np.kaiser(42, 14)
  2. Plot the window with matplotlib:
    plt.plot(window)
    plt.show()

    The Kaiser window appears as follows:

    Time for action – plotting the Kaiser window

What just happened?

We plotted the Kaiser window with the NumPy kaiser() function.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset