代码搜索:IP软核

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

代码结果 10,000
www.eeworm.com/read/431613/8665586

m ip_04_07.m

% ip_4_07.m added for spar 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/287843/8665591

m ip_07_07.m

% MATLAB script for Illustrative Problem 7.7. clear echo on Tb=1; f1=1000/Tb; f2=f1+1/Tb; phi=pi/4; N=5000; % number of samples t=0:Tb/(N-1):Tb; u1=cos(2*pi*f1*t); u2=cos(2*pi*f2*t);
www.eeworm.com/read/287843/8665595

m ip_01_03.m

% MATLAB script for Illustrative Problem 3, Chapter 1. clear echo on fnct='normal'; a=-6; b=6; n=24; tol=0.1; xx=fseries(fnct,a,b,n,tol,0,1); xx1=xx(n+1:-1:2); xx1=[conj(xx1),xx]; absxx1=ab
www.eeworm.com/read/287843/8665598

m ip_09_07.m

% MATLAB scripit for Illustrative Problem 9.7. clear echo on rho_b=0:2:24; % rho in dB for i=1:length(rho_b), smld_err_prb(i)=ss_pe97(rho_b(i)); % simulated error ra
www.eeworm.com/read/431613/8665603

m ip_04_08.m

% ip_04_08.m added for spar n=10; tol=0.01; p1=0; p2=1; b=10*p2; [a,y,dist]=lloydmax('normal',b,n,tol,p1,p2);
www.eeworm.com/read/431613/8665619

m ip_04_04.m

% MATLAB script for Illustrative Problem 4.4. 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/287843/8665621

m ip_03_11.m

% MATLAB script for Illustrative Problem 3.11. % Demonstration script for frequency modulation. The message signal % is m(t)=sinc(100t). clear echo on t0=.2; % sign
www.eeworm.com/read/287843/8665632

m ip_08_08.m

% MATLAB script for Illustrative Problem 8.8. % Generate U, denoting all information sequences. clear k=4; for i=1:2^k for j=k:-1:1 if rem(i-1,2^(-j+k+1))>=2^(-j+k) u(i,j)=1;
www.eeworm.com/read/431613/8665633

m ip_04_05.m

% ip_04_05.m added for spar a=[-10 -5 -4 -2 0 1 3 5 10]; [y,dist]=mse_dist('normal',a,0.01,0,1)
www.eeworm.com/read/431613/8665636

m ip_04_13.m

% ip_04_13.m for spar a=randn(1,500); [dist,a_quan,code]=mula_pcm(a,16,255); [Y,I]=sort(a); plot(Y,a_quan(I))