代码搜索:ip核
找到约 10,000 项符合「ip核」的源代码
代码结果 10,000
www.eeworm.com/read/306478/13744603
m ip_07_10.m
% MATLAB script for Illustrative Problem 10, Chapter 7.
clear
echo on
K=10;N=2*K;T=100;variance=1;
noise=sqrt(variance)*randn(1,N);
a=rand(1,36);
a=sign(a-0.5);
b=reshape(a,9,4);
% Generate th
www.eeworm.com/read/306478/13744605
m ip_07_11.m
% MATLAB script for Illustrative Problem 11, Chapter 7
clear
echo on
num=[0.01 1];
den=[1 1.01 1];
[a,b,c,d]=tf2ss(num,den);
dt=0.01;
u=ones(1,2000);
x=zeros(2,2001);
for i=1:2000
x(:,i+1)
www.eeworm.com/read/306478/13744609
m ip_04_08.m
% ip_04_08.m Illustrative Problem 4.8
clear
echo on;
n=10;
tol=1e-6;
p1=0;
p2=1;
b=10*p2;
[a,y,dist]=lloydmax('normal',b,n,tol,p1,p2);
www.eeworm.com/read/306478/13744612
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/306478/13744613
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/306478/13744614
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/306478/13744615
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/306478/13744617
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/306478/13744622
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/306478/13744629
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