Vlasiator ebf0dd394 on dev (v5.4.0 + 1054 commits)
Loading...
Searching...
No Matches
hamming.m
Go to the documentation of this file.
1function res = hamming(len)
2% Return a vector of length len giving the hamming window profile. Multiply element-by-element with your data vector.
3res = 0.54 + 0.46 * cos(2 * pi() * ((-len/2):1:(len/2 - 1)) / len);
window
Definition Dispersion.m:22
Parameters length
Definition Dispersion.m:36
function res
Definition hamming.m:1