虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

a-Channel-Modeling-Sub<b>committee</b>-R

  • This is an example program showing how to use the LMX2326 chip. The program configures the chip a

    This is an example program showing how to use the LMX2326 chip. The program configures the chip and then prompts the user for a channel number. When the channel number is entered, the pll tunes to the desired frequency.

    标签: program chip configures the

    上传时间: 2017-08-04

    上传用户:小儒尼尼奥

  • 2005年电赛题目

    电子设计大赛A.正弦信号发生器    B.集成运放测试仪    C.简易频谱分析仪    D.单工无线呼叫系统    E.悬挂运动控制系统    F.数控恒流源    G.三相正弦波变频电源

    标签: 电赛

    上传时间: 2015-03-03

    上传用户:月半情殇

  • 离散实验 一个包的传递 用warshall

     实验源代码 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("请输入矩阵第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可传递闭包关系矩阵是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元关系的可传递闭包\n"); void warshall(int,int); int k , n; printf("请输入矩阵的行数 i: "); scanf("%d",&k); 四川大学实验报告 printf("请输入矩阵的列数 j: "); scanf("%d",&n); warshall(k,n); } 

    标签: warshall 离散 实验

    上传时间: 2016-06-27

    上传用户:梁雪文以

  • 操作系统磁盘调度课设

    磁盘调度调度: 建立磁盘的数据结构描述; 使用两种方式产生作业:(a)自动产生, (b)手工输入; 在屏幕上显示每个作业的执行情况; 时间的流逝可用下面几种方法模拟:(a)按键盘,每按一次可认为过一个时间单位;  (b) 响应WM_TIMER; 将一批磁盘请求的执行情况存入磁盘文件,以后可以读出并重放。

    标签: 操作系统 磁盘 调度

    上传时间: 2019-07-05

    上传用户:niguanwo

  • Body area communications channel modeling

    The past decades have witnessed wide demand and applications for wireless commu- nications in the human body area, that is, in the immediate environment around a human body. These demands and applications especially focus on wireless transmis- sion and networking of personal information for user identification, healthcare and medical applications.

    标签: communications modeling channel Body area

    上传时间: 2020-05-26

    上传用户:shancjb

  • LTE-Advanced+Relay+Technology

    LTE-Advanced becomes a truly global standard for 4G cellular communications. Relay, as one of the key technologies of LTE-Advanced, can significantly extend the coverage, and improve the system throughput. LTE-A standards and tech- nologies were described in several recent books where the limited pages for relay feature prevent the detailed explanations of the technology. In this book, we tried to provide an in-depth description of LTE-A relay development. More specifically, significant portions are spent on relay channel modeling and potential technologies during the study item phase of the development, although some of those tech- nologies, such as Type 2 cooperative relay, multi-hop relay, relay with backhaul of carrier aggregation, were not standardized in Release 10 LTE.

    标签: LTE-Advanced Technology Relay

    上传时间: 2020-05-27

    上传用户:shancjb

  • MIMO-OFDM Wireless Communications with MATLAB

    MIMO-OFDM is a key technology for next-generation cellular communications (3GPP-LTE, Mobile WiMAX, IMT-Advanced) as well as wireless LAN (IEEE 802.11a, IEEE 802.11n), wireless PAN (MB-OFDM), and broadcasting (DAB, DVB, DMB). This book provides a comprehensive introduction to the basic theory and practice of wireless channel modeling, OFDM, and MIMO, with MATLAB ? programs to simulate the underlying techniques on MIMO-OFDMsystems.Thisbookisprimarilydesignedforengineersandresearcherswhoare interested in learning various MIMO-OFDM techniques and applying them to wireless communications.

    标签: Communications MIMO-OFDM Wireless MATLAB with

    上传时间: 2020-05-28

    上传用户:shancjb

  • 关于FPGA流水线设计的论文

    关于FPGA流水线设计的论文\r\nThis work investigates the use of very deep pipelines for\r\nimplementing circuits in FPGAs, where each pipeline\r\nstage is limited to a single FPGA logic element (LE). The\r\narchitecture and VHDL design of a parameterized integer\r\na

    标签: FPGA 流水线 论文

    上传时间: 2013-09-03

    上传用户:wl9454

  • 在软件Proteus中仿真ucos(ARM)

    在软件Proteus中仿真ucos(ARM)\r\n1.移植除了OS_CPU.h,OS_CPU_A.s,OS_CPU_C.C 三个函数外,对中断专门用了一个函数OS_int_A.s 按其中的规则写中断函数即可. \r\n2。应用实例为\\ArmUCOS\\App\\test1\\test.mcp,在周立功2104的板子上的ram中就可直接运行(code+data

    标签: Proteus ucos ARM 软件

    上传时间: 2013-09-30

    上传用户:s363994250

  • 80C51特殊功能寄存器地址表

    /*--------- 8051内核特殊功能寄存器 -------------*/ sfr ACC = 0xE0;             //累加器 sfr B = 0xF0;  //B 寄存器 sfr PSW    = 0xD0;           //程序状态字寄存器 sbit CY    = PSW^7;       //进位标志位 sbit AC    = PSW^6;        //辅助进位标志位 sbit F0    = PSW^5;        //用户标志位0 sbit RS1   = PSW^4;        //工作寄存器组选择控制位 sbit RS0   = PSW^3;        //工作寄存器组选择控制位 sbit OV    = PSW^2;        //溢出标志位 sbit F1    = PSW^1;        //用户标志位1 sbit P     = PSW^0;        //奇偶标志位 sfr SP    = 0x81;            //堆栈指针寄存器 sfr DPL  = 0x82;            //数据指针0低字节 sfr DPH  = 0x83;            //数据指针0高字节 /*------------ 系统管理特殊功能寄存器 -------------*/ sfr PCON  = 0x87;           //电源控制寄存器 sfr AUXR = 0x8E;              //辅助寄存器 sfr AUXR1 = 0xA2;             //辅助寄存器1 sfr WAKE_CLKO = 0x8F;        //时钟输出和唤醒控制寄存器 sfr CLK_DIV  = 0x97;          //时钟分频控制寄存器 sfr BUS_SPEED = 0xA1;        //总线速度控制寄存器 /*----------- 中断控制特殊功能寄存器 --------------*/ sfr IE     = 0xA8;           //中断允许寄存器 sbit EA    = IE^7;  //总中断允许位  sbit ELVD  = IE^6;           //低电压检测中断控制位 8051

    标签: 80C51 特殊功能寄存器 地址

    上传时间: 2013-10-30

    上传用户:yxgi5