代码搜索:IP软核

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

代码结果 10,000
www.eeworm.com/read/439811/7701397

m ip_06_04.m

% MATLAB script for Illustrative Problem 6.4. clear echo on Length=101; Fs=10000; W=2000; Ts=1/Fs; n=-(Length-1)/2:(Length-1)/2; t=Ts*n; h=2*W*sinc(2*W*t); % The rectangular windowed
www.eeworm.com/read/439811/7701401

m ip_08_12.m

% MATLAB script for Illustrative Problem 8.12. clear [p_err_ha,gamma_b]=p_e_hd_a(7,13,11,15,3); [p_err_ho,gamma_b]=p_e_hd_o(7,13,11,15,3); [p_err_so,gamma_b]=p_e_sd_o(7,13,11,15,3); [p_err_sa,gam
www.eeworm.com/read/439811/7701404

m ip_06_05.m

% MATLAB script for Illustrative Problem 5, Chapter 6. clear echo on p=0.99; N=1000; d=5; % The filter is described by the vectors A and B below... A=[1 -2*p p^2]; B=(1-p)^2; for i=1:N, [
www.eeworm.com/read/439811/7701405

m ip_07_01.m

% MATLAB script for Illustrated Problem 7.1. clear echo on T=1; delta_T=T/200; % sampling interval alpha=0.5; % rolloff factor fc=40/T; % carrier frequency
www.eeworm.com/read/439811/7701407

m ip_04_09.m

% MATLAB script for Illustrative Problem 4.9. clear echo on t=[0:0.01:10]; a=sin(t); [sqnr8,aquan8,code8]=u_pcm(a,8); [sqnr16,aquan16,code16]=u_pcm(a,16); pause % Press a key to see the SQNR fo
www.eeworm.com/read/439811/7701408

m ip_04_07.m

% ip_4_07.m added for spar clear p1=0; p2=1; delta=1; n=11; tol=0.01; b=10*p2; uq_mdpnt('normal',b,n,delta,tol,p1,p2)
www.eeworm.com/read/439811/7701409

m ip_01_05.m

% MATLAB script for Illustrative Problem 5.1. clear df=0.01; fs=10; ts=1/fs; t=[-5:ts:5]; x1=zeros(size(t)); x1(41:51)=t(41:51)+1; x1(52:61)=ones(size(x1(52:61))); x2=zeros(size(t)); x2(51:
www.eeworm.com/read/439811/7701411

m ip_07_09.m

% MATLAB script for Illustrative Problem 9, Chapter 7. clear echo on K=10;N=2*K;T=100; a=rand(1,36); a=sign(a-0.5); b=reshape(a,9,4); % Generate the 16QAM points XXX=2*b(:,1)+b(:,2)+j*(2*b(:,3
www.eeworm.com/read/439811/7701413

m ip_02_10.m

% MATLAB script for Illustrative Problem 2.10. clear N=1000; % number of samples for i=1:2:N, [X1(i) X1(i+1)]=gngauss; [X2(i) X2(i+1)]=gngauss; echo off ; end;
www.eeworm.com/read/439811/7701414

m ip_05_08.m

% MATLAB script for Illustrated Problem 5.8. clear echo on SNRindB1=0:1:12; SNRindB2=0:0.1:12; for i=1:length(SNRindB1), % simulated error rate smld_err_prb(i)=smldpe58(SNRindB1(i