chebwin.m

来自「matlabDigitalSigalProcess内有文件若干」· M 代码 · 共 15 行

M
15
字号
function w = chebwin(n_est, r)
%CHEBWIN Chebyshev window.
%    W = CHEBWIN(N,R) returns the N-point Chebyshev window 
%        with R decibels of ripple.

%   Author: James Montanaro
%   Reference: E. Brigham, "The Fast Fourier Transform and its Applications" 
%   Copyright (c) 1988-98 by The MathWorks, Inc.
%   $Revision: 1.13 $  $Date: 1997/11/26 20:13:28 $

[n,w,trivalwin] = check_order(n_est);
if trivalwin, return, end;

w = chebwinx(n,r);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?