WelchWin: Welch (parabolic) window function

版本 1.0.0.0 (1.4 KB) 作者: Andrew Davis
The function returns a parabolic window of length n. This is useful for spectral estimation.
549.0 次下载
更新时间 2012/11/9

查看许可证

WELCHWIN Welch (parabolic) window

Usage:
w = welchwin(n) returns the n-point parabolic window

n: scalar window length

w: column vector of window values

Example:
t = (0:9)';
s = rand(1,10)';
n = length(s);
w = welchwin(n);
s2 = s.*w;
plot(t, s, 'ko', t, s2, 'r-')
legend('original data', 'windowed data')

See also: RECTWIN

引用格式

Andrew Davis (2024). WelchWin: Welch (parabolic) window function (https://www.mathworks.com/matlabcentral/fileexchange/38978-welchwin-welch-parabolic-window-function), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2012a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 AI for Signals 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.0.0