June 2015
Beginner
348 pages
8h 44m
English
The Bartlett window is a triangular smoothing window:

bartlett() function:window = np.bartlett(42)
plt.plot(window) plt.show()
The following is the Bartlett window, which is triangular, as expected:

We plotted the Bartlett window with the NumPy bartlett() function.
Read now
Unlock full access