You are here : matlabSignal Processingtriang

triang() - Signal Processing

w = triang(L) returns an L-point
triangular window in the column vector, w.See Definitions for the equations
that define the triangular window. The triangular window is very similar
to a Bartlett window. The Bartlett window always ends with zeros at
samples 1 and L, while the triangular window is
nonzero at those points. For L odd, the center L-2 points
of triang(L-2) are equivalent to bartlett(L).


Syntax

w = triang(L)


Example

Triangular WindowOpen This Example
Create a 200-point triangular window. Display the result using wvtool.
L = 200;
w = triang(L);
wvtool(w)


Output / Return Value


Limitations


Alternatives / See Also


Reference