代码搜索:信号路径优化
找到约 10,000 项符合「信号路径优化」的源代码
代码结果 10,000
www.eeworm.com/read/315096/13552321
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/315096/13552444
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/301807/13848148
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/301807/13848150
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/301807/13848204
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/474743/6350204
txt 16fft.txt
module FFT16(xn_r,xn_i,RST,CLK,START,OUT,Xk_r,Xk_i);
input [15:0] xn_r,xn_i; //输入的实部与虚部
input RST,CLK,START;
//FFT启动信号与时钟信号和复位信号
output [15:0]
www.eeworm.com/read/207229/6359154
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/207229/6359156
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/490970/6446791
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/406902/11432894
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('实部','虚部');