代码搜索:信号链

找到约 10,000 项符合「信号链」的源代码

代码结果 10,000
www.eeworm.com/read/227861/14408146

m exm046_2.m

%exm046_2.m %(1)构造受噪声污染的信号 clear,randn('state',0) t=linspace(0,10,512); y=3*sin(5*t)-6*cos(9*t)+5*randn(size(t)); % disp('按任意键继续!绘制带噪声的原始信号。') pause clf,shg plot(t,y) disp('按任意
www.eeworm.com/read/226046/14502207

asm 21-0 红外发射接收程序.asm

;//**************************************************************** ;//*文件名:红外发射接受实验程序 ;//*创建人:巫升辉 ;//*2005.9.25 ;功能:程序由定时器T0产生1HZ的调制信号由.P1.0产生,T1口对红外接收头 ;接受的信号进行处理并送显示,注:一般红外
www.eeworm.com/read/225679/14526238

m f3_23.m

%常数调频信号 fm1=fmconst(256,0.2); %单边指数窗幅值调制信号 am1=amexpo1s(256,100); %合成 sig=am1.*fm1; %显示 %实部 plot(real(sig),'LineWidth',2); hold on; %虚部 plot(imag(sig),'ro--','LineWidth',2); legend('实部','虚
www.eeworm.com/read/225679/14526254

m f10_1.m

%生成正弦信号 N=1000; t=1:N; sig1=sin(0.3*t); %生成三角波信号 sig2(1:500)=((1:500)-1)/500; sig2(501:N)=(1000-(501:1000))/500; figure(1); subplot(2,1,1); plot(t,sig1,'LineWidth',2); xlabel('样本序号 n'); yla
www.eeworm.com/read/222385/14693409

txt shenjingwangluo.txt

用小波函数构建神经网络的源程序 该程序是用小波函数构建神经网络的源程序。用以分析心电信号、脑电信号等等。 [Copy to clipboard] [ - ]CODE: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% clear all load data M1=20; epo=15; A=4; B=18; B2=B
www.eeworm.com/read/221223/14752861

m examp16_3.m

%生成正弦信号 N=1000; t=1:N; sig1=sin(0.3*t); %生成三角波信号 sig2(1:500)=((1:500)-1)/500; sig2(501:N)=(1000-(501:1000))/500; figure(1); subplot(2,1,1);plot(t,sig1,'LineWidth',2);xlabel('时间 t/s');ylabel('幅
www.eeworm.com/read/221223/14752877

m examp16_4.m

%生成正弦信号 N=1000; t=1:N; sig1=sin(0.3*t); %生成三角波信号 sig2(1:500)=((1:500)-1)/500; sig2(501:N)=(1000-(501:1000))/500; figure(1); subplot(2,1,1);plot(t,sig1,'LineWidth',2); xlabel('时间 t/s');ylabel(
www.eeworm.com/read/221223/14752883

m examp16_2.m

%生成含噪正弦信号 N=1024; t=1:N; sig=sin(0.03*t); figure(1); plot(t,sig,'LineWidth',2);xlabel('时间 t/s');ylabel('幅值 A'); %叠加信号 x=sig+randn(1,N); x1=wextend(1,'ppd',x,20); N1=N+2*20; t1=1:N1; figure(
www.eeworm.com/read/221223/14752885

m exam12_1.m

% 当前延拓模式是补零 % 装载信号 load noisdopp; x = noisdopp; figure(1); subplot(211); plot(x); title('原始信号'); % 使用db1小波包对x进行3层分解,使用shannon熵 wpt = wpdec(x,3,'db1'); % 画出小波包树 plot(wpt) % 读取小波包(2,1)的系数 cfs
www.eeworm.com/read/221223/14752903

m exam12_5.m

% 当前延拓模式是补零 % 载入信号 load noisdopp; x = noisdopp; figure(1); subplot(211); plot(x); title('原始信号'); % 利用db1小波包在第3层对x进行分解,使用Shannon熵 t = wpdec(x,3,'db1','shannon'); % 画出小波包树 plot(t) % 重构小波包结点(2,