代码搜索:ip核
找到约 10,000 项符合「ip核」的源代码
代码结果 10,000
www.eeworm.com/read/321160/13411515
m ip_04_08.m
% ip_04_08.m added for spar
n=10;
tol=0.01;
p1=0;
p2=1;
b=10*p2;
[a,y,dist]=lloydmax('normal',b,n,tol,p1,p2);
www.eeworm.com/read/321160/13411520
m ip_04_04.m
% MATLAB script for Illustrative Problem 4, Chapter 4.
echo on ;
a=[-10,-5,-4,-2,0,1,3,5,10];
for i=1:length(a)-1
y(i)=centroid('normal',a(i),a(i+1),0.001,0,1);
echo off ;
end
www.eeworm.com/read/321160/13411523
m ip_04_05.m
% ip_04_05.m added for spar
a=[-10 -5 -4 -2 0 1 3 5 10];
[y,dist]=mse_dist('normal',a,0.01,0,1)
www.eeworm.com/read/321160/13411524
m ip_04_13.m
% ip_04_13.m for spar
a=randn(1,500);
[dist,a_quan,code]=mula_pcm(a,16,255);
[Y,I]=sort(a);
plot(Y,a_quan(I))
www.eeworm.com/read/321160/13411525
m ip_04_11.m
% ip_04_11.m for spar
ip_04_10;
[Y,I]=sort(a);
plot(Y,a_quan(I))
www.eeworm.com/read/321160/13411535
m ip_04_10.m
% MATLAB script for Illustrative Problem 10, Chapter 4
echo on
a=randn(1,500);
n=64;
[sqnr,a_quan,code]=u_pcm(a,64);
pause % Press a key to see the SQNR
sqnr
pause % Press a key to see the first five
www.eeworm.com/read/321160/13411537
m ip_02_03.m
% MATLAB script for Illustrative Problem 3, Chapter 2.
echo on
rho=0.95;
X0=0;
N=1000;
X=gaus_mar(X0,rho,N);
M=50;
Rx=Rx_est(X,M);
% plotting
www.eeworm.com/read/321160/13411538
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:delta:3;
for
www.eeworm.com/read/321160/13411539
m ip_02_07.m
% MATLAB script for Illustrative Problem 7, Chapter 2.
echo on
N=256; % number of samples
deltaf=0.1; % frequency separation
f=[0:deltaf:(N/2)*deltaf, -(N/2-1)*deltaf:deltaf:-deltaf];
www.eeworm.com/read/321160/13411542
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;
echo off ;
end;