代码搜索:IP

找到约 10,000 项符合「IP」的源代码

代码结果 10,000
www.eeworm.com/read/303558/13812656

m ip_06_03.m

% MATLAB script for Illustrative Problem 6.3. clear echo on f_cutoff=2000; % the desired cutoff frequency f_stopband=2500; % the actual stopband frequency fs=10000; % the sampling frequen
www.eeworm.com/read/303558/13812658

m ip_08_05.m

% MATLAB script for Illustrative Problem 8.5. clear echo off w=[1:5:20,25:20:100,130:50:300,400:100:1000,1250:250:5000,5500:500:10000]; pn0_db=[-20:1:30]; pn0=10.^(pn0_db/10); for i=1:45 for
www.eeworm.com/read/303558/13812659

m ip_06_02.m

% MATLAB script for Illustrative Problem 6.2. clear echo on T=1; delta_f=1/(100*T); f=-5/T:delta_f:5/T; Sv=2*(cos(pi*f*T).*sinc(f*T)).^2; % Plotting command follows. plot(f,Sv);
www.eeworm.com/read/303558/13812663

m ip_03_10.m

% MATLAB script for Illustrative Problem 3.10. % Demonstration script for frequency modulation. The message signal % is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3, and zero otherwise. clear echo
www.eeworm.com/read/303558/13812664

m ip_05_04.m

% MATLAB script for Illustrative Problem 5.4. clear echo on SNRindB1=0:1:12; SNRindB2=0:0.1:12; for i=1:length(SNRindB1), % simulated error rate smld_err_prb(i)=smldpe54(SNRindB1(i));
www.eeworm.com/read/303558/13812666

m ip_05_11.m

% MATLAB script for Illustrative Problem 5.11. clear echo on SNRindB=0:2:10; for i=1:length(SNRindB), % simulated error rate smld_err_prb(i)=smldp511(SNRindB(i)); echo off; en
www.eeworm.com/read/303558/13812668

m ip_08_07.m

% MATLAB script for Illustrative Problem 8.7 clear echo on ep=0.3; for i=1:2:61 p(i)=0; for j=(i+1)/2:i p(i)=p(i)+prod(1:i)/(prod(1:j)*prod(1:(i-j)))*ep^j*(1-ep)^(i-j); echo off ;
www.eeworm.com/read/303558/13812674

m ip_09_04.m

% MATLAB script for Illustrative Problem 9.4. clear echo on Lc=20; % number of chips per bit A1=3; % amplitude of the first sinusoidal interference A2=7; % amplitude of the seco
www.eeworm.com/read/303558/13812675

m ip_02_06.m

% MATLAB script for Illustrative Problem 2.6. clear echo on delta=0.01; F_min=-2; F_max=2; f=F_min:delta:F_max; Sx=ones(1,length(f)); H=1./(1+(2*pi*f).^2); Sy=Sx.*H.^2;
www.eeworm.com/read/303558/13812676

m ip_02_08.m

% MATLAB script for Illustrative Problem 2.8. clear delta_w=2*pi/100; w=-pi:delta_w:pi; % one period of Sy Sy=1./(1.9025-1.9*cos(w)); % Plotting command follows. plot(w,Sy);