代码搜索:小信号

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

代码结果 10,000
www.eeworm.com/read/388478/2550417

v channel_choice.v

//这个模块实现两路输入信号的选择; //将用于调制信号的两路输入切换,和解调模块的两路信号切换; module channel_choice(channel,d_int,d_ext,q); input channel,d_int,d_ext; output q; reg q; always @(channel or d_int or d_ext) begin case (ch
www.eeworm.com/read/388478/2550636

v channel_choice.v

//这个模块实现两路输入信号的选择; //将用于调制信号的两路输入切换,和解调模块的两路信号切换; module channel_choice(channel,d_int,d_ext,q); input channel,d_int,d_ext; output q; reg q; always @(channel or d_int or d_ext) begin case (ch
www.eeworm.com/read/473886/6842598

v add_noise.v

//加噪声的行为模块 //在无噪声的unnoised(峰值为1)信号中加入随机noise(峰值为2)信号 //得到加入噪声的noised信号,从而达到模拟信道传输的过程 `timescale 1ns/1ns module add_noise(en,rst,clk_31,unnoised_data,noised_data); input en,rst; input clk_31;
www.eeworm.com/read/473523/6845387

m f6_10.m

%产生单分量信号 sig1=atoms(128,[64,0.25,20,1]); %计算Wigner-Ville分布 [tfr,t,f]=tfrwv(sig1); %计算Renyi信息 disp('单分量信号的Renyi信息度量为') R1=renyi(tfr,t,f) %产生两分量信号 sig2=atoms(128,[32,0.25,20,1;96,0.25,20,1]); %
www.eeworm.com/read/173803/9635163

c main.c

#include #define BYTE unsigned char //输入信号部分 sbit _hw_left=P1^0; //红外探测黑线信号 sbit _hw_mid=P1^1; sbit _hw_right=P1^2; sbit _gm0=P1^3; //光敏探测信号 sbit _gm1=P1^4; sbit _gm2=P1^5
www.eeworm.com/read/173659/9644699

m hc953.m

%《数字信号处理教程——MATLAB释义与实现》第九章例9.5.3程序hc953 % 窗函数对频谱分析的影响 % 电子工业出版社出版 陈怀琛编著 2004年9月 % N=128; % 给定信号长度N fr=[0.25,0.28]; % 给定信号频率fr R0=[128,256]; % 给定D
www.eeworm.com/read/411683/11232607

c my_kill.c

// 为简化实现,本程序只支持按信号的编号而不是信号名发送信号 // 感兴趣的读者可以按照自己的系统下的signal.h增加名字到编号的映射表 #include #include #include #include int main(int argc, char ** argv) {
www.eeworm.com/read/249631/12483993

m f6_10.m

%产生单分量信号 sig1=atoms(128,[64,0.25,20,1]); %计算Wigner-Ville分布 [tfr,t,f]=tfrwv(sig1); %计算Renyi信息 disp('单分量信号的Renyi信息度量为') R1=renyi(tfr,t,f) %产生两分量信号 sig2=atoms(128,[32,0.25,20,1;96,0.25,20,1]); %
www.eeworm.com/read/200623/15428422

m f6_10.m

%产生单分量信号 sig1=atoms(128,[64,0.25,20,1]); %计算Wigner-Ville分布 [tfr,t,f]=tfrwv(sig1); %计算Renyi信息 disp('单分量信号的Renyi信息度量为') R1=renyi(tfr,t,f) %产生两分量信号 sig2=atoms(128,[32,0.25,20,1;96,0.25,20,1]); %
www.eeworm.com/read/423665/10538692

asm int1.asm

;******************************************************************************** ;中断控制的P1.1小灯。采用12MHZ晶振。 * ;**********************************************