nortonbeer(W,vararg​in)

バージョン 1.2.0.0 (3.81 KB) 作成者: Jered Wells
NORTONBEER produces a one-dimensional Norton-Beer apodization filter
ダウンロード: 456
更新 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 (2025). nortonbeer(W,varargin) (https://www.mathworks.com/matlabcentral/fileexchange/41477-nortonbeer-w-varargin), MATLAB Central File Exchange. に取得済み.

MATLAB リリースの互換性
作成: R2013a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersAntenna 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