代码搜索结果

找到约 10,000 项符合 Raspberry Pi 的代码

chebyi.asv

clear all close all clc nfft=256; Rp=0.3; Rs=50; typeo=3; % switch typeo % case 1 % type='bandpass'; % case 2 % type='stop'; % case 3 % type='high'; % case 4 % type='l

ellipse.m

clear all close all clc Rp=0.2; Rs=40; typeo=2; % switch typeo % case 1 % type='bandpass'; % case 2 % type='stop'; % case 3 % type='high'; % case 4 % type='low'; % end

chebyii.m

clear all close all clc nfft=256; Rp=0.3; Rs=60; typeo=2; % switch typeo % case 1 % type='bandpass'; % case 2 % type='stop'; % case 3 % type='high'; % case 4 % type='low

butterworth.asv

clear all clc close all Rp=1; Rs=30; typeo=3; % switch typeo % case 1 % type='bandpass'; % case 2 % type='stop'; % case 3 % type='high'; % case 4 % type='low'; % end

butterworth.m

clear all clc close all Rp=1; Rs=30; typeo=1; % switch typeo % case 1 % type='bandpass'; % case 2 % type='stop'; % case 3 % type='high'; % case 4 % type='low'; % end

chebyii.asv

clear all close all clc nfft=256; Fs=1000*pi; Rp=1; Rs=40; typeo=3; % switch typeo % case 1 % type='bandpass'; % case 2 % type='stop'; % case 3 % type='high'; % case 4 %

chebyi.m

clear all close all clc nfft=256; Rp=0.1; Rs=50; typeo=2; % switch typeo % case 1 % type='bandpass'; % case 2 % type='stop'; % case 3 % type='high'; % case 4 % type='l

banfpassflr.asv

clc clear all close all T1=0.1095; N=41; alpha=(N-1)/2; l=0:N-1;wl=(2*pi/N)*l; Hrs=[zeros(1,6),T1,ones(1,7),T1,zeros(1,11),T1 ones(1,7),T1,zeros(1,6)]; Hdr=[0 0 1 1 0 0]; wdl=[0 0.3 0.3 0.7 0

banfpassflr.m

clc clear all close all T1=0.1095; N=41; alpha=(N-1)/2; l=0:N-1;wl=(2*pi/N)*l; Hrs=[zeros(1,6),T1,ones(1,7),T1,zeros(1,11),T1 ones(1,7),T1,zeros(1,6)]; Hdr=[0 0 1 1 0 0]; wdl=[0 0.3 0.3 0.7 0

hr_type4.m

function [Hr,w,b,L]=Hr_Type4(h); M=length(h); L=M/2; b=2*[h(L:-1:1)]; n=[1:L]; n=n-0.5; w=[0:500]'*pi/500; Hr=sin(w*n)*b';