📄 chebwin.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -