代码搜索:ip核
找到约 10,000 项符合「ip核」的源代码
代码结果 10,000
www.eeworm.com/read/312588/13608612
m ip_02_02.m
% MATLAB script for Illustrative Problem 2, Chapter 2.
echo on
mx=[0 0]';
Cx=[1 1/2;1/2 1];
x=multi_gp(mx,Cx);
% Computation of the pdf of (x1,x2) follows
delta=0.3;
x1=-3:delta:3;
x2=-3:delt
www.eeworm.com/read/312588/13608613
m ip_02_06.m
% MATLAB script for Illustrative Problem 6, Chapter 2.
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/312588/13608615
m ip_02_04.m
% MATLAB script for Illustrative Problem 4, Chapter 2.
echo on
N=1000;
M=50;
Rx_av=zeros(1,M+1);
Sx_av=zeros(1,M+1);
for j=1:10, % take the ensemble average over 10 realizations
X=ran
www.eeworm.com/read/312588/13608616
m ip_02_05.m
% MATLAB script for Illustrative Problem 5, Chapter 2.
echo on
% first part
Sx1=[ones(1,32)];
Rx1=ifft(Sx1,32);
% second part
Sx2=[ones(1,16),zeros(1,224),ones(1,16)];
Rx2=ifft(Sx2,256);
% pl
www.eeworm.com/read/312588/13608617
m ip_02_09.m
% MATLAB script for Illustrative Problem 9, Chapter 2.
N=1000; % The maximum value of n
M=50;
Rxav=zeros(1,M+1);
Ryav=zeros(1,M+1);
Sxav=zeros(1,M+1);
Syav=zeros(1,M+1);
for i
www.eeworm.com/read/312588/13608618
m ip_02_10.m
% MATLAB script for Illustrative Problem 10, Chapter 2.
N=1000; % number of samples
for i=1:2:N,
[X1(i) X1(i+1)]=gngauss;
[X2(i) X2(i+1)]=gngauss;
end; % standa
www.eeworm.com/read/312587/13608620
m ip_01_02.m
% MATLAB script for Illustrative Problem 2, Chapter 1.
echo on
fnct='lambda';
a=-4;
b=4;
n=24;
tol=0.1;
xx=fseries(fnct,a,b,n,tol);
xx1=xx(n+1:-1:2);
xx1=[conj(xx1),xx];
absxx1=abs(xx1);
www.eeworm.com/read/312587/13608622
m ip_01_05.m
% MATLAB script for Illustrative Problem 5, Chapter 1.
df=0.01;
fs=10;
ts=1/fs;
t=[-5:ts:5];
x1=zeros(size(t));
x1(41:51)=t(41:51)+1;
x1(52:61)=ones(size(x1(52:61)));
x2=zeros(size(t));
x2(51
www.eeworm.com/read/312587/13608634
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);
www.eeworm.com/read/312587/13608647
m ip_01_01.m
% MATLAB script for Illustrative Problem 1, Chapter 1.
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);