Previous Up Next

15.2.15 Blackman window function: blackman_window

The blackman_window command finds a Blackman window of a sequence.

Example.

Input:

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

Output:

Input:

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

Output:


Previous Up Next