代码搜索:ip核
找到约 10,000 项符合「ip核」的源代码
代码结果 10,000
www.eeworm.com/read/321050/13412840
m ip_03_01.m
% MATLAB script for Illustrative Problem 3.1.
% Demonstration script for DSB-AM. The message signal is
% +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3, and zero otherwise.
clear
echo on
t0=.15;
www.eeworm.com/read/321050/13412841
m ip_05_05.m
% MATLAB script for Illustrative Problem 5.5.
clear
echo on
SNRindB1=0:1:10;
SNRindB2=0:0.1:10;
for i=1:length(SNRindB1),
% simulated error rate
smld_err_prb(i)=smldpe55(SNRindB1(i));
www.eeworm.com/read/321050/13412842
m ip_09_05.m
% MATLAB script for Illustrative Problem 9.5.
clear
echo on
% First determine the maximal length shift-register sequences.
% Assume the initial shift-register content as "00001".
connections1=[1
www.eeworm.com/read/321050/13412843
m ip_02_05.m
% MATLAB script for Illustrative Problem 5, Chapter 2.
clear
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)
www.eeworm.com/read/321050/13412845
m ip_02_04.m
% MATLAB script for Illustrative Problem 2.4.
clear
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 ten realizations
X=rand
www.eeworm.com/read/321050/13412850
m ip_03_03.m
% MATLAB script for Illustrative Problem 3.3.
% Demonstration script for DSB-AM modulation. 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/321050/13412857
m ip_05_06.m
% MATLAB script for Illustrative Problem 5.6.
clear
echo on
SNRindB1=0:1:15;
SNRindB2=0:0.1:15;
for i=1:length(SNRindB1),
smld_err_prb(i)=smldpe56(SNRindB1(i)); % simulated error rate
www.eeworm.com/read/321050/13412861
m ip_03_05.m
% MATLAB script for Illustrative Problem 3.5.
% Demonstration script for DSB-AM demodulation. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3, and zero otherwise.
clear
echo o
www.eeworm.com/read/321050/13412866
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/321050/13412868
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