Previous Up Next

15.2.13  Bartlett-Hann window function: bartlett_hann_window

The bartlett_hann_window command finds a Bartlett-Hahn window of a sequence, which can be used to examine a short segment when analyzing a long.


Example.
Input:

L0:=randvector(1000,0..1):;
scatterplot(L0);

Output:

Input:

L:=bartlett_hann_window(L0):;
scatterplot(L);

Output:


Previous Up Next