代码搜索:PCB信号完整性分析

找到约 10,000 项符合「PCB信号完整性分析」的源代码

代码结果 10,000
www.eeworm.com/read/220804/14788385

m q709a.m

%《MATLAB在电子信息课程中的应用》第七章例7.9程序q709a % 八点任意时间信号周期延拓离散时间傅立叶变换 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月 disp('八点时间信号的离散时间傅立叶变换') x0=randn(1,8); % x0是8点行向量 dt=2*pi/8; w=linspace(0,2*pi,1000)/dt; % w
www.eeworm.com/read/219871/14861146

html signalsandslots.html

www.eeworm.com/read/219871/14861216

html templates.html

www.eeworm.com/read/216262/15022587

m example6_12.m

y=linspace(.1,1,100); thr=0.28; ythard=wthresh(y,'h',thr); ytsoft=wthresh(y,'s',thr); subplot(2,2,1); plot(y); title('原始信号'); subplot(2,2,3); plot(ythard); title('硬阈值信号'); s
www.eeworm.com/read/216262/15022599

m example6_11.m

%装载采集的信号leleccum.mat load leleccum; %============================= %将信号中第2000到第3450个采样点赋给s indx=2000:3450; s=leleccum(indx); %============================= %画出原始信号 subplot(2,2,1); plot(s); t
www.eeworm.com/read/216262/15022608

m example6_14.m

%设置信噪比和随机种子值 snr=4; init=2055615866; %============================= %产生原始信号sref和被高斯白噪声污染的信号s [sref,s]=wnoise(1,11,snr,init); %============================= %用sym8小波对信号s进行3层分解并对细节系数 %选用SURE阈值模式
www.eeworm.com/read/216262/15022620

m example6_10.m

%给定一个正弦信号并图示之 t=0:1000; s=sin(0.03*t); subplot(3,1,1); plot(s); axis([0 1000 -1 1]); title('原始信号'); %============================= %给该信号加噪声 load noissin; ns=noissin; subplot(3,1,2); plot(n
www.eeworm.com/read/216121/15026515

htm umlsemantics008.htm

UML语义(中文)
www.eeworm.com/read/215911/15034219

m example6_12.m

y=linspace(.1,1,100); thr=0.28; ythard=wthresh(y,'h',thr); ytsoft=wthresh(y,'s',thr); subplot(2,2,1); plot(y); title('原始信号'); subplot(2,2,3); plot(ythard); title('硬阈值信号'); s
www.eeworm.com/read/215911/15034227

m example6_11.m

%装载采集的信号leleccum.mat load leleccum; %============================= %将信号中第2000到第3450个采样点赋给s indx=2000:3450; s=leleccum(indx); %============================= %画出原始信号 subplot(2,2,1); plot(s); t