代码搜索:数字中频

找到约 10,000 项符合「数字中频」的源代码

代码结果 10,000
www.eeworm.com/read/242794/12985569

c text.c

/******************************************************** 压力测试仪 系统描述;输入 15--115kPA压力信号 输出 00h--ffh数字信号(adc0809) 在LED上显示实际的压力值,如果超限则报警 线性区间标度变换公式: y=(11
www.eeworm.com/read/327967/13053273

h devicecontrolcommand.h

#include "publicparam.h" //遥控器命令字 #define YKCMD_LEN 16 //遥控器命令长度 #define YKCMD_NUM 0X80 //数字 #define YKCMD_AUTOOPEN 0X71 //轮训开 #define YKCMD_AUTOCLOSE
www.eeworm.com/read/327492/13075234

m cirshift.m

function y = cirshift(x,m,N) %《数字信号处理教程——MATLAB释义与实现》子程序 % 循环移位子程序 % 电子工业出版社出版 陈怀琛编著 2004年9月 % % [y] = cirshift(x,m,N) % ------------------------------------------------------------------- %
www.eeworm.com/read/240662/13208018

c 7-39.c

/* 将字符串a 与字符串b转换成数字后相加*/ #include main() { char *a="–100.23"; char *b="200e-2"; float c; c=atof(a)+atof(b); printf("c=%.2f\n",c); }
www.eeworm.com/read/239924/13247858

c power_cal.c

#include #include #include #define n 11 //矩阵阶数,根据实际修改 #define finished 1 #define stop -1 #define effective_num 9 //有效数字位数 #define MAX_times 100 //最大
www.eeworm.com/read/323865/13312644

asm digphone.asm

;数字电话程序,录音(不加密),录音(加密),放(解密) .mmregs .def _c_int00 STACK: .usect "STACK",100 to_flag .usect "vars",1 to_cout .usect "vars",1 TMP .set 69h TVAL .set 16384 ;定时常数(1
www.eeworm.com/read/322785/13366158

c shu_ma_guan.c

/********************************************* 实验任务:学习数码管的动态显示 实验功能:数码管显示1028四个数字 *********************************************/ #include code unsigned char seg7code[]={0xc0,0xf9
www.eeworm.com/read/322785/13366176

bak shu_ma_guan.c.bak

/********************************************* 实验任务:学习数码管的动态显示 实验功能:数码管显示1028四个数字 *********************************************/ #include code unsigned char seg7code[]={0xc0,0xf9
www.eeworm.com/read/322746/13368422

asm sort.asm

stack segment para stack 'stack' top db 150 dup(?) stack ends data segment buff dw 20 dup(?);存储20个待排序数字 order dw 10000,1000,100,10,1 data ends code segment assume cs:code,ds:data inpu
www.eeworm.com/read/321262/13410012

c 7-39.c

/* 将字符串a 与字符串b转换成数字后相加*/ #include main() { char *a="–100.23"; char *b="200e-2"; float c; c=atof(a)+atof(b); printf("c=%.2f\n",c); }