Hann window with a 2 km full width of window
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
here is a window function:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1629766/image.png)
how to code this window funcion?
0 Kommentare
Akzeptierte Antwort
Chunru
am 28 Feb. 2024
N = 101; % Window length (# of points over -dz/2 to dz/2)
w = hann(N); % hanning window
plot(-(N-1)/2:(N-1)/2, w)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!