登录
首页 » 通信 » Relevant QPSK modulation and demodulation of the simulation program, including t...

Relevant QPSK modulation and demodulation of the simulation program, including t...

于 2022-02-13 发布 文件大小:41.13 kB
0 195
下载积分: 2 下载次数: 1

代码说明:

有关QPSK调制解调的仿真程序,包括基带输入波形及其功率谱、QPSK调制信号及其功率谱、AWGN信道输出及其功率谱、通过瑞利信道之前和之后的信号星座图 6)在高斯白噪声和瑞利衰落信道条件下的误码性能以及高斯白噪声的理论曲线,所有误码性能曲线在同一坐标比例下绘制-Relevant QPSK modulation and demodulation of the simulation program, including the baseband input waveform and its power spectrum, QPSK modulation signal and its power spectrum, AWGN channel output and its power spectrum, through the Rayleigh channel before and after the signal constellation of Figure 6) in high- Adams white noise and Rayleigh fading channel under the conditions of BER, as well as the theory of Gaussian white noise curve, all the BER performance curve in the same proportion of coordinates under the map

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • dsp实现软件无线电数字下变频得主体程序部分
    dsp实现软件无线电数字下变频得主体程序部分-radio dsp software digital down-conversion process was the main part of
    2022-07-26 02:49:06下载
    积分:1
  • PIC16F877单片机使用外部中断最简单的演示程序,适合PIC单片机初学者使用。...
    PIC16F877单片机使用外部中断最简单的演示程序,适合PIC单片机初学者使用。-PIC16F877 MCU external interrupt most simple demonstration program, suitable for PIC microcontrollers for beginners to use.
    2023-08-13 19:35:03下载
    积分:1
  • linux epoll模型
    该代码是关于在linux平台下的网络编程,epoll模型,socket接受线程:C语言为了高并发所以选择了epoll。当程序启动的时候(g_net_update.c文件中main函数,会启动一个thread见函数create_accept_task)这个thread就处理一件事情,只管接收客户端的连接,当有连接进来的时候 通过epoll_ctl函数,把socket fd 加入到epoll里面去,epoll设置监听事件EPOLLIN | EPOLLET; 主要是监听的是加入到epoll中的socket是否可读(因为我的需求是客户端连上了server就会马上向server发送一份数据的)。其它的部分在主线程中处理。主线程:是一个无线循环,epoll_wait 函数相当于把客户端的连接从epoll中拿出来(因为我们监听的是EPOLLIN | EPOLLET)说明这个时候客户端有数据发送过来)。再通过recv_buffer_from_fd 函数把客户端发送过来的数据读出来。然后其他的一切就抛给线程池去处理。线程池:(代码中我会在池里面创建15个线程) 双向链表。加入线程就是在链表后面加一个链表项,链表的前面会一个一个被拿出来处理。主要是malloc 函数free函数,sem_wait函数sem_post的处理(sem_wait 会阻塞当值大于0是会减一,sem_post是值加一)。typedef void* (FUNC)(void arg, int index);是我们自定义的线程的逻辑处理部分,arg是参数,index是第几个线程处理(我们隐形的给每个线程都标了号),例如代码中的respons_stb_info,更加具体可以看看代码里面是怎么实现的。聪明的你也可以改掉这块的内容改成动态线程池,当某个时刻的处理比较多的时候能够动态的增加线程,而不像我代码里面的是固定的。数据库连接池:按照我的需求在处理客户端请求数据的时候是要访问数据库的。就是一下子创建出一堆的数据连接。要访问数据库的时候先去数据库连接池中找出空闲的连接,具体可以看下代码。使用的时候可以参考下database_process.c文件(代码中数据库连接池和线程池中的个数是一样的)。
    2022-03-20 03:15:54下载
    积分:1
  • 高速Viterbi处理器的并行算法和结构
    高速Viterbi处理器的并行算法和结构-High-speed Viterbi processor parallel algorithm and structure
    2023-05-18 11:55:03下载
    积分:1
  • 这是一个使用modem拨号上网的程序,可以使用,在gprs方式下也可使用,是用gprs的很好的例子程序...
    这是一个使用modem拨号上网的程序,可以使用,在gprs方式下也可使用,是用gprs通信的很好的例子程序-It is a modem dial-up procedures can be used in GPRS mode also can be used. GPRS communication is a good example of procedures
    2022-10-17 07:20:03下载
    积分:1
  • detailed description of Radio planning for GSM network
    detailed description of Radio planning for GSM network
    2022-02-22 06:08:42下载
    积分:1
  • 固定电话的来电检测及显示程序,包含DTMF和FSK息两种。非常适用...
    固定电话的来电检测及显示程序,包含DTMF和FSK信息两种。非常适用-Detection of fixed telephone calls and display program, including information on two types of DTMF and FSK. Are ideally suited for
    2022-02-06 09:08:58下载
    积分:1
  • this code is help you to draw Fourier Series . with this code you can change s...
    this code is help you to draw Fourier Series . with this code you can change some variable and explain what change for education.
    2022-02-24 20:21:48下载
    积分:1
  • 著名的电七号令NO7,协议栈实现代码。包含了从最底层HDCL数据流处理到上层L4呼叫处理的流程。...
    著名的电信七号信令NO7,协议栈实现代码。包含了从最底层HDCL数据流处理到上层L4呼叫处理的流程。-The code for Ss7 protocol stacks,include from the HDCL data stream handling to the the Handle flow of L4 Call.
    2022-12-07 12:45:02下载
    积分:1
  • 用c语言实现的在arm上运行的无线报警程序
    用c语言实现的在arm上运行的无线报警程序-wireless alarm code on arm by c language
    2023-01-23 12:45:03下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载