资源列表
BER_perf_4QAM_2x2MIMO
- 2x2MIMO的误码率性能仿真,比较了ML,ZF,MMSE,ZF-SIC,MMSE-SIC在4QAM下的性能曲线(The BER performance of 2x2MIMO is simulated, and the performance curves of ML, ZF, MMSE, ZF-SIC, and MMSE-SIC under 4QAM are compared)
BER_perf_4QAM_4x4MIMO
- 4x4MIMO的误码率性能仿真,比较了ML,ZF,MMSE,ZF-SIC,MMSE-SIC在4QAM下的性能曲线(The BER performance of 4x4MIMO is simulated, and the performance curves of ML, ZF, MMSE, ZF-SIC, and MMSE-SIC under 4QAM are compared)
day3
- 《四则运算小计算器设计过程实录》第三天相关程序。更多程序请点我的账号进行下载。(7 rar documents in total.more code on this book plz put a eye on my account.)
BER_perf_16QAM_2x2MIMO
- 2x2MIMO的误码率性能仿真,比较了ML,ZF,MMSE,ZF-SIC,MMSE-SIC在16QAM下的性能曲线(The BER performance of 2x2MIMO is simulated, and the performance curves of ML, ZF, MMSE, ZF-SIC, and MMSE-SIC under 16QAM are compared)
GMM
- 比较好的高斯混合模型GMM,含数据生成,实验过程简单(A better Gauss mixture model GMM, including data generation, the experimental process is simple)
搜狗高速下载
- 双平台直方图增强算法,适合低光红外图像增强(dual-stage image enhance)
BER_perf_16QAM_4x4MIMO
- 4x4MIMO的误码率性能仿真,比较了ML,ZF,MMSE,ZF-SIC,MMSE-SIC在16QAM下的性能曲线(The BER performance of 4x4MIMO is simulated, and the performance curves of ML, ZF, MMSE, ZF-SIC, and MMSE-SIC under 16QAM are compared)
基于OPENCV人脸识别与追踪,灰度化,二值化
- 图像处理,基于OPENCV的人脸识别与追踪源码,灰度化,二值化(image processing code, using open source computer vision library)
SocketTool
- 进行windows界面编程,界面分为发送端和接收端,分别可以进行多个发送端多个接收端的多发多收操作,并且可以进行发送文件的内容、大小、发送时间的控制。最后,可以显示出错信息,并且可以保存当次的设置信息。(Windows programming interface, the interface is divided into transmitter and receiver, which can carry out multiple transmitter multiple receiver MI
net调用 webservice
- 调试成功过用net调用 webservicenet(this is use net call webservicenet)
soap3.0
- soap3.0 webseverice开发用(soap3.0 webseverice development)
新建文本文档
- 一、循环队列的基础知识 1.循环队列需要几个参数来确定 循环队列需要2个参数,front和rear 2.循环队列各个参数的含义 (1)队列初始化时,front和rear值都为零; (2)当队列不为空时,front指向队列的第一个元素,rear指向队列最后一个元素的下一个位置; (3)当队列为空时,front与rear的值相等,但不一定为零; 3.循环队列入队的伪算法 (1)把值存在rear所在的位置; (2)rear=(rear+1)%maxsize ,其中maxsize代表数