nortonbeer(W,vararg​in)

버전 1.2.0.0 (3.81 KB) 작성자: Jered Wells
NORTONBEER produces a one-dimensional Norton-Beer apodization filter
다운로드 수: 450
업데이트 날짜: 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