nortonbeer(W,vararg​in)

版本 1.2.0.0 (3.8 KB) 作者: Jered Wells
NORTONBEER produces a one-dimensional Norton-Beer apodization filter
456.0 次下载
更新时间 2017/7/12

查看许可证

nortonbeer produces a one-dimensional Norton-Beer apodization filter

nortonbeer(W) returns the W-point symmetric Norton-Beer window in a
column vector.

nortonbeer(W,C) permits custom assignment of the filter coefficients. The
coefficients in C are used to produce the filter window FILT according
to the following equation:

for ii = 0:numel(C)-1
filt = filt + C(ii+1).*(1-U.^2).^ii;
end

In the above equation, C contains elements whose sum is
automatically normalized to unity. U is the normalized path difference
as defined by Norton and Beer. Little improvement is achieved through
the use of more than 5 coefficients.

Several filter parameters were defined by Norton and Beer. Those
parameters can be used by defining C as one of the following character
strings:

'none' C = [1,0,0,0,0]
'weak' C = [0.5480,-0.0833,0.5353,0,0]
'medium' C = [0.26,-0.154838,0.894838,0,0]
'strong' C = [0.09,0,0.5875,0,0.3225]

By default, the 'weak' filter parameters are used.

nortonbeer(W,C,SFLAG) generates the W-point Norton-Beer window using
SFLAG window sampling. SFLAG may be either 'symmetric' or 'periodic'.
By default, a symmetric window is returned.

% Example:
% Creates 64-point Norton Beer window and display the result in WVTool

L = 64;
wvtool(nortonbeer(L))

See also blackman, hann, hamming, window.

引用格式

Jered Wells (2024). nortonbeer(W,varargin) (https://www.mathworks.com/matlabcentral/fileexchange/41477-nortonbeer-w-varargin), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R2013a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Antenna and Array Analysis 的更多信息

Community Treasure Hunt

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

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

Updated calls to "inputcheck.m" with calls to "validateattributes.m" - a MATLAB default function.

1.1.0.0

Documentation update; Output is now column vector

1.0.0.0