代码搜索:IP软核
找到约 10,000 项符合「IP软核」的源代码
代码结果 10,000
www.eeworm.com/read/439811/7701468
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/439811/7701469
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/439811/7701470
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/439811/7701472
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/439811/7701473
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/439811/7701475
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);
www.eeworm.com/read/439811/7701477
m ip_06_12.m
% MATLAB script for Illustrative Problem 6.12.
clear
echo on
N=500; % length of the information sequence
K=5;
actual_isi=[0.05 -0.063 0.088 -0.126 -0.25 0.9047 0.25 0 0.126 0.038 0.088
www.eeworm.com/read/439811/7701479
m ip_07_06.m
% MATLAB script for Illustrative Problem 7.6.
clear
echo on
SNRindB1=0:2:15;
SNRindB2=0:0.1:15;
M=16;
k=log2(M);
for i=1:length(SNRindB1),
smld_err_prb(i)=cm_sm41(SNRindB1(i)); % simulated e
www.eeworm.com/read/439811/7701481
m ip_05_10.m
% MATLAB script for Illustrative Problem 5.10.
clear
echo on
SNRindB=0:2:10;
for i=1:length(SNRindB),
% simulated error rate
smld_err_prb(i)=smldp510(SNRindB(i));
echo off;
www.eeworm.com/read/439811/7701486
m ip_04_11.m
% ip_04_11.m for spar
clear
ip_04_10;
[Y,I]=sort(a);
plot(Y,a_quan(I))