代码搜索:IP软核

找到约 10,000 项符合「IP软核」的源代码

代码结果 10,000
www.eeworm.com/read/244937/12830799

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/244937/12830804

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/244937/12830818

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/244937/12830831

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/244937/12830835

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/244937/12830840

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/244937/12830846

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/244937/12830854

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/244937/12830872

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/244937/12830901

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