代码搜索:信号路径优化
找到约 10,000 项符合「信号路径优化」的源代码
代码结果 10,000
www.eeworm.com/read/406902/11432896
m f5_2.m
%产生非平稳信号
%%暂态信号1
sig1=fmlin(128,0,0.3);
%%暂态信号2
sig2=fmlin(128,0.2,0.4);
sig=sig1+sig2;
%时域波形
figure(1)
plot(real(sig),'LineWidth',2);
hold on;
plot(imag(sig),'ro--');
legend('实部','虚部');
x
www.eeworm.com/read/406902/11433019
m f4_5.m
%产生非平稳信号
%%暂态信号1
sig1=real(amgauss(128,45).*fmconst(128,0.25,45));
%%暂态信号2
sig2=real(amgauss(128,85).*fmconst(128,0.25,85));
sig=sig1+sig2;
%时域波形
figure(1)
plot(sig,'LineWidth',2);
xlabel('时间
www.eeworm.com/read/406599/11439266
m f5_1.m
%产生非平稳信号
%%暂态信号1
sig1=fmlin(128,0,0.4);
%%暂态信号2
sig2=fmlin(128,0.1,0.45);
sig=sig1+sig2;
%时域波形
figure(1)
plot(real(sig),'LineWidth',2);
hold on;
plot(imag(sig),'ro--');
legend('实部','虚部');
www.eeworm.com/read/406599/11439268
m f5_2.m
%产生非平稳信号
%%暂态信号1
sig1=fmlin(128,0,0.3);
%%暂态信号2
sig2=fmlin(128,0.2,0.4);
sig=sig1+sig2;
%时域波形
figure(1)
plot(real(sig),'LineWidth',2);
hold on;
plot(imag(sig),'ro--');
legend('实部','虚部');
x
www.eeworm.com/read/406597/11439300
m f4_5.m
%产生非平稳信号
%%暂态信号1
sig1=real(amgauss(128,45).*fmconst(128,0.25,45));
%%暂态信号2
sig2=real(amgauss(128,85).*fmconst(128,0.25,85));
sig=sig1+sig2;
%时域波形
figure(1)
plot(sig,'LineWidth',2);
xlabel('时间
www.eeworm.com/read/262288/11594208
m f5_1.m
%产生非平稳信号
%%暂态信号1
sig1=fmlin(128,0,0.4);
%%暂态信号2
sig2=fmlin(128,0.1,0.45);
sig=sig1+sig2;
%时域波形
figure(1)
plot(real(sig),'LineWidth',2);
hold on;
plot(imag(sig),'ro--');
legend('实部','虚部');
www.eeworm.com/read/262288/11594215
m f5_2.m
%产生非平稳信号
%%暂态信号1
sig1=fmlin(128,0,0.3);
%%暂态信号2
sig2=fmlin(128,0.2,0.4);
sig=sig1+sig2;
%时域波形
figure(1)
plot(real(sig),'LineWidth',2);
hold on;
plot(imag(sig),'ro--');
legend('实部','虚部');
x
www.eeworm.com/read/262288/11594582
m f4_5.m
%产生非平稳信号
%%暂态信号1
sig1=real(amgauss(128,45).*fmconst(128,0.25,45));
%%暂态信号2
sig2=real(amgauss(128,85).*fmconst(128,0.25,85));
sig=sig1+sig2;
%时域波形
figure(1)
plot(sig,'LineWidth',2);
xlabel('时间
www.eeworm.com/read/261997/11611746
m example4_5.m
%定义输入信号并绘出其曲线
time=0:0.025:5;
X=sin(sin(time).*time*10);
plot(time,X);
title('输入信号T');
xlabel('时间');
ylabel('输入信号');
figure;
%定义系统线性变换函数,绘出系统输出曲线
T=X*2+0.8;
plot(time,T);
title('系统输出T');
x
www.eeworm.com/read/157533/11694021
m example4_5.m
%定义输入信号并绘出其曲线
time=0:0.025:5;
X=sin(sin(time).*time*10);
plot(time,X);
title('输入信号T');
xlabel('时间');
ylabel('输入信号');
figure;
%定义系统线性变换函数,绘出系统输出曲线
T=X*2+0.8;
plot(time,T);
title('系统输出T');
x