You are here : matlabSignal Processingbartlett

bartlett() - Signal Processing

w = bartlett(L) returns an L-point Bartlett window in the column vector w, where L must be a positive integer.

The window length L=N+1.

The Bartlett window is very similar to a triangular window as returned by the triang function.

The Bartlett window always has zeros at the first and last samples, however, while the triangular window is nonzero at those points.

For L odd, the center L - 2 points of bartlett(L) are equivalent to triang(L-2).

Note : If you specify a one-point window (set L = 1), the value 1 is returned.


Syntax

w = bartlett(L)


Example

%Bartlett Window Create a 64-point Bartlett window. Display the result using wvtool.
L = 64;
bw = bartlett(L);
wvtool(bw)


Output / Return Value


Limitations


Alternatives / See Also


Reference