代码搜索:cutoff 有哪些应用?

找到约 10,000 项符合「cutoff 有哪些应用?」的源代码

代码结果 10,000
www.eeworm.com/read/168454/9912401

m prog8b2.m

% % m-file for Example 8B.2 (Program 8B.2, p566). % Program name: prog8b2.m % N=2; % Filter order Fs=1280; % Sampling frequency FN=Fs/2; fc=150; % Cutoff frequenc
www.eeworm.com/read/168454/9912414

m prog8b1.m

% % m-file for Example 8B.1 (Program 8B.1, p564). % Program name: prog8b1.m % N=2; % Filter order Fs=1280; % Sampling frequency fc=150; % Cutoff frequency WC=2*pi
www.eeworm.com/read/362213/10012533

m ex12_4.m

% Example 12.4 % N = 2; % number of poles T = .2; % sampling period wc = 2; % analog cutoff frequency Omegac = wc*T/pi; % normalized digital cutoff frequency [numd,dend] = butter(N,Ome
www.eeworm.com/read/362213/10012550

m ex12_5.m

% Example 12.5 % N = 2; % number of poles Rp = 3; % passband ripple T = .2; % sampling period wc = 2; % analog cutoff frequency Omegac = wc*T/pi; % normalized digital cutoff frequenc
www.eeworm.com/read/166473/10018916

m makepulse.m

function pulse = makepulse(shape,cutoff,time,samples,rolloff,varargin) %MAKEPULSE Modulation impulse design. % PULSE = MAKEPULSE(SHAPE,CUTOFF,TIME,SAMPLES,ROLLOFF) returns % samples of desired S
www.eeworm.com/read/359900/10116836

m hpfilter.m

function H = hpfilter(type, M, N, D0, n) %HPFILTER Computes frequency domain highpass filters. % H = HPFILTER(TYPE, M, N, D0, n) creates the transfer function of % a highpass filter, H, of the
www.eeworm.com/read/359245/10159368

m ideal_bp1.m

function hd=ideal_bp1(Wcl,Wch,N) % compute the ideal bandpass fiter unit pulse respondence hd(n) % wcl: low cutoff frequency % wch: high cutoff frequency % N: window length % hd: unit pulse respo
www.eeworm.com/read/359245/10159402

m ideal_bp2.m

function hd=ideal_bp2(Wcl,Wch,N) % compute the ideal bandpass fiter unit pulse respondence hd(n) % wcl: low cutoff frequency % wch: high cutoff frequency % N: window length % hd: unit pulse respo
www.eeworm.com/read/359245/10159404

m ideal_bs.m

function hd=ideal_bs(Wcl,Wch,N) % compute the ideal bandstop fiter unit pulse respondence hd(n) % wcl: low cutoff frequency % wch: high cutoff frequency % N: window length % hd: unit pulse respon
www.eeworm.com/read/359245/10159493

m exa1_35.m

% exa1-35_gauspuls.m for example 1-35 % gauspuls function clear all; fs=1000000; %sample frequency tc=gauspuls('cutoff',50e3,0.6,[],-40); t=-tc:1/fs:tc; yi=gauspuls(t,50e3,0.6); plot(t,yi)