代码搜索:ip核
找到约 10,000 项符合「ip核」的源代码
代码结果 10,000
www.eeworm.com/read/313963/13577752
m ip_06_06.m
% MATLAB script for Illustrative Problem 6, Chapter 6.
clear
echo on
N=52;
noise_var=0.25;
sigma=sqrt(noise_var); % standard deviation of the noise
for i=1:N, % generate data sequence
www.eeworm.com/read/313963/13577754
m ip_01_02.m
% MATLAB script for Illustrative Problem 2, Chapter 1.
clear
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
www.eeworm.com/read/313963/13577755
m ip_04_05.m
% ip_04_05.m added for spar
clear
a=[-10 -5 -4 -2 0 1 3 5 10];
[y,dist]=mse_dist('normal',a,0.01,0,1)
www.eeworm.com/read/313963/13577756
m ip_06_08.m
% MATLAB script for Illustrative Problem 6.8.
clear
echo on
N=31;
T=1;
W=1/(2*T);
n=-(N-1)/2:(N-1)/2; % the indices for g_T
% The expression for g_T is obtained next.
for i=1:length(n),
g
www.eeworm.com/read/313963/13577757
m ip_09_06.m
% MATLAB script for Illustrative Problem 9.6.
clear
echo on
rho_b1=0:5:35; % rho in dB for the simulated error rate
rho_b2=0:0.1:35; % rho in dB for theoretical error rate comp
www.eeworm.com/read/313963/13577758
m ip_04_13.m
% ip_04_13.m for spar
clear
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/313963/13577759
m ip_04_10.m
% MATLAB script for Illustrative Problem 4.10.
clear
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 firs
www.eeworm.com/read/313963/13577761
m ip_08_11.m
% MATLAB script for Illustrative Problem 8.11.
clear
echo on
gamma_b_db=[-4:1:14];
gamma_b=10.^(gamma_b_db/10);
qq=q(sqrt(0.733.*gamma_b));
p_err=2047*qq.^2.*(3-2.*qq);
pause % Press a key to
www.eeworm.com/read/313963/13577762
m ip_04_04.m
% MATLAB script for Illustrative Problem 4.4.
clear
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/313963/13577764
m ip_06_01.m
% MATLAB script for Illustrative Problem 6.1.
clear
echo on
T=1;
delta_f=1/(100*T);
f=-5/T:delta_f:5/T;
sgma_a=1;
Sv=sgma_a^2*sinc(f*T).^2;
% Plotting command follows.
plot(f,Sv);