代码搜索:IP

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

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

m ip_05_07.m

% MATLAB script for Illustrated Problem 5.7. clear echo on n0=.5*randn(100,1); n1=.5*randn(100,1); n2=.5*randn(100,1); n3=.5*randn(100,1); x1=1.+n0; y1=n1; x2=n2; y2=1.+n3; plot(x1,y1,'o',x
www.eeworm.com/read/303558/13812681

m ip_07_12.m

% MATLAB script for Illustrative Problem 12, Chapter 7. clear echo on alpha=0.4; T=1/4800; t=[-3*T:1.001*T/100:3*T]; x=sinc(t./T).*(cos(pi*alpha*t./T)./(1-4*alpha^2*t.^2/T^2)); pause % Press an
www.eeworm.com/read/303558/13812682

m ip_06_11.m

% MATLAB script for Illustrative Problem 6.11. clear echo on T=1; for n=-2:2, for k=-2:2, temp=0; for i=-2:2, temp=temp+(1/(1+(n-i)^2))*(1/(1+(k-i)^2)); end; X(k+3,n+3)=temp;
www.eeworm.com/read/303558/13812683

m ip_03_09.m

% MATLAB script for Illustrative Problem 3.9. % Demonstration script for envelope detection. The message signal % is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3, and zero otherwise. clear echo on
www.eeworm.com/read/301479/13858614

m ip_01_08.m

% MATLAB script for Illustrartive Problem 8, Chapter 1. ts=0.001; fs=1/ts; t=[0:ts:10]; x=cos(2*pi*47*t)+cos(2*pi*219*t)
www.eeworm.com/read/301479/13858615

m ip_01_04.m

% MATLAB script for Illustrative Problem 4, Chapter 1. echo on n=[-20:1:20]; % Fourier series coefficients of x(t) vector x=.5*(sinc(n/2)).^2; % sampling interval ts=1/40; % time vector t=[-.
www.eeworm.com/read/301479/13858619

m ip_01_06.m

% MATLAB script for Illustrative Problem 6, Chapter 1 echo on ts=0.2; % set parameters fs=1/ts; df=0.01; x=[zeros(1,10),[0:0.2:1],ones(1,9),[1:-0.2:0],zeros(1,10)]; [X,x,df1]
www.eeworm.com/read/301479/13858622

m ip_01_07.m

% MATLAB script for Illustrative Problem 7, Chapter 1. echo on df=0.01; % freq. resolution fs=5; % sampling frequency ts=1/fs;
www.eeworm.com/read/301479/13858625

m ip_01_03.m

% MATLAB script for Illustrative Problem 3, Chapter 1. echo on fnct='normal'; a=-6; b=6; n=24; tol=0.1; xx=fseries(fnct,a,b,n,tol,0,1); xx1=xx(n+1:-1:2); xx1=[conj(xx1),xx]; absxx1=abs(xx1);