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

DS-Spread

  • //通过18B20检测的数字温度可在电脑上显示当前温度值 #include <reg52.h> #define uchar unsigned char #define uint un

    //通过18B20检测的数字温度可在电脑上显示当前温度值 #include <reg52.h> #define uchar unsigned char #define uint unsigned int sbit DS=P2^2 //define interface uint temp // variable of temperature uchar flag1 // sign of the result positive or negative sbit dula=P2^6 sbit wela=P2^7

    标签: define unsigned include 18B20

    上传时间: 2014-01-19

    上传用户:Andy123456

  • 读取CTF脑磁图数据的Matlab代码

    读取CTF脑磁图数据的Matlab代码,要求读取数据为.ds后缀文件

    标签: Matlab CTF 读取 数据

    上传时间: 2013-12-21

    上传用户:bruce5996

  • 摘要:报适了一种直接序列软扩频调制解调器的SAw实现方案

    摘要:报适了一种直接序列软扩频调制解调器的SAw实现方案,并给出了相应的实验结果。该方案刘一提高系统抗干扰能力、频宽利川等方而均具有与其他技术不同的特点。同时,该技术方案为进一步研究DS-0FDM下了基石出。

    标签: SAw 直接序列 扩频调制 实现方案

    上传时间: 2013-12-04

    上传用户:时代电子小智

  • 在三条径的瑞利信道中

    在三条径的瑞利信道中,对于直接序列扩频: (1) 请设计DS-CDMA一种具体的码分导引辅助的信道估计方法,接收机分别采用等均益合并、最大比合并。用Simulink进行仿真,测量BPSK的误码率性能,画出比特信噪比与信道估计均方误差的关系曲线,画出比特信噪比与误码率的关系曲线,请解释在误码率为0.01时,两种合并方式所表现的不同的物理意义。 (2) 设频率已经同步,请设计DS-CDMA一种具体的单停顿滑动相关时间同步方法,用Simulink进行仿真(自己编写代码S-Function方式),分析所设计方案的时间同步精度,画出比特信噪比与捕获概率的关系曲线。 (3) 设时间已经同步,请设计DS-CDMA一种具体的频率方法,用Simulink进行仿真(自己编写代码S-Function方式),画出比特信噪比与频率同步误差的关系曲线。

    标签: 信道

    上传时间: 2017-01-25

    上传用户:ruan2570406

  • 复接入

    复接入,B/W双用户使用直接扩频序列 % >>>multiple access b/w 2 users using DS CDMA % >>>format is : cdmamodem(user1,user2,snr_in_dbs) % >>>user1 and user2 are vectors and they should be of equal length % >>>e.g. user1=[1 0 1 0 1 0 1] , user2=[1 1 0 0 0 1 1],snr_in_dbs=-50 % >>>or snr_in_dbs=50 just any number wud do % Waqas Mansoor % NUST , Pakistan

    标签:

    上传时间: 2014-11-22

    上传用户:zl5712176

  • CDMA 的仿真程序

    CDMA 的仿真程序,Frequency Hopping Spread Spectrum,Random frequency hopps to form a spread signal

    标签: CDMA 仿真程序

    上传时间: 2013-12-22

    上传用户:nanshan

  • NanoStack is a 6lowpan IPv6 + IEEE 802.15.4 protocol stack, enabling wireless embedded and sensor ne

    NanoStack is a 6lowpan IPv6 + IEEE 802.15.4 protocol stack, enabling wireless embedded and sensor networking. The goal is to help 6lowpan spread globally and to encourage new features from the IETF and ISA100 to be implemented and tested.

    标签: NanoStack enabling embedded protocol

    上传时间: 2014-01-21

    上传用户:牧羊人8920

  • The computing world has undergone a revolution since the publication of The C Programming Language i

    The computing world has undergone a revolution since the publication of The C Programming Language in 1978. Big computers are much bigger, and personal computers have capabilities that rival mainframes of a decade ago. During this time, C has changed too, although only modestly, and it has spread far beyond its origins as the language of the UNIX operating system

    标签: Programming publication revolution The

    上传时间: 2017-05-16

    上传用户:thinode

  • 使用matlab实现包络检波

    使用matlab实现包络检波,解调;matlab与通信仿真;matlab教程;ds-cdma相关文章。

    标签: matlab 包络检波

    上传时间: 2013-12-17

    上传用户:koulian

  • 16进制转十进制

    DATAS SEGMENT w dw 0 keybuf db 255      db 0      db 255 dup(0)      ;定义键盘输入需要的缓冲区 DATAS ENDS STACKS SEGMENT db 200 dup(?) STACKS ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS,SS:STACKS START: MOV AX,DATAS MOV DS,AX mov dx,offset keybuf     ;用0a号功能,输入一个字符串 mov ah,0ah               ;用回车结束 int 21h mov dl,0ah               ;再进行换行,以便在下一行显示转换后的字符串  mov ah,2     int 21h ;  push ax ;   push dx ;      mov dl,cl ;     mov ah,02 ;     int 21h   ;   pop dx ;  pop ax mov bx,offset keybuf+1   ;取出字符串的字符个数,作为循环的次数 mov cl,[bx] mov ch,0     mov ax,0             again:  inc bx mov ax,[w] push bx mov bx,16 mul bx pop bx            ;是小写字母,则转换为大写字母 mov [w],ax mov dl,[bx]             ;取出一个字符, cmp dl,'9' jbe lab1 cmp dl,'F' jbe lab2 sub dl,32 lab2: sub dl ,07h lab1:  sub dl,30h add [w],dx  loop again   mov ax,[w]  mov bx,-1 push bx mov bx,10 lab3 :mov dx,0 div bx  push dx cmp ax,0 jnz lab3 lab5: pop dx cmp dx,-1 jz lab4 add dl,30h mov ah,02 int 21h        jmp  lab5            ;循环,处理完整个字符串 lab4:  MOV AH,4CH INT 21H CODES ENDS END START

    标签: 汇编

    上传时间: 2015-04-02

    上传用户:wcc0310