代码搜索:信号电源

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

代码结果 10,000
www.eeworm.com/read/357662/10203382

m 例程16-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/357662/10203403

m 例程12-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/357662/10203410

m 例程12-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,
www.eeworm.com/read/357662/10203446

m 例程17-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/357662/10203462

m 例程10-12.m

% 当前的延拓模式是补零(参见dwtmode函数) % 装载原始一维信号 load sumsin; s = sumsin; % 使用db1执行3层小波分解 [c,l] = wavedec(s,3,'db1'); subplot(311); plot(s); title('原始信号s.'); subplot(312); plot(c); title(' 3层小波分解结构')
www.eeworm.com/read/357595/10205193

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/161995/10348578

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/161995/10348589

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/425287/10365691

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/425287/10365716

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