# Sparse Code Multiple Access (SCMA) scheme demonstration
Bit error rate (BER) simulation of **SCMA** scheme (based on [presentation](http://www.innovateasia.com/5g/images/pdf/1st%205G%20Algorithm%20Innovation%20Competition-ENV1.0%20-%20SCMA.pdf) from [1st 5G Algorithm Innovation Competition](http://www.innovateasia.com/5g/en/)) in **Matlab**/**Octave**.
## Objectives
To provide implementations of **SCMA** encoding/decoding algorithms for use in the researches of new schemes for 5G telecommunication standard.
## Description
This project demonstrates BER simulation of **SCMA** scheme.
The main features of project:
* codebooks are from [presentation](http://www.innovateasia.com/5g/images/pdf/1st%205G%20Algorithm%20Innovation%20Competition-ENV1.0%20-%20SCMA.pdf)
* Log-MPA algorithm is used
* current version is only demonstration and works with the next SCMA codebooks parameters: *M* = 4, *d_f* = 3 and the number of non-zero elements in codewords is equal 2 (notes from paper [M. Taherzadeh, H. Nikopour, A. Bayesteh and Hadi Baligh. SCMA Codebook Design](https://arxiv.org/pdf/1408.3653v1.pdf)).
The code is written in **Matlab**, but fully compatible with **Octave**.
Unfortunately, the program executions very slow in **Octave**.
The mex function generation in **Matlab** increases the speed of execution approximately in 15 times.
## Channel models
* AWGN channel: `h = ones(K, V, N)`
* Uplink, Rayleigh channel without diversity: `h = 1/sqrt(2)*(repmat(randn(1, V, N), K, 1)+1j*repmat(randn(1, V, N), K, 1))`
* Rayleigh channel with diversity: `h = 1/sqrt(2)*(randn(K, V, N)+1j*randn(K, V, N))`
* Downlink, Rayleigh channel without diversity: `h = 1/sqrt(2)*(repmat(repmat(randn(1, 1, N),K, 1), 1, V)+1j*(repmat(repmat(randn(1, 1, N), K, 1), 1, V)))`
* Downlink, Rayleigh channel with diversity: `h = 1/sqrt(2)*(repmat(randn(K, 1, N), 1, V)+1j*repmat(randn(K, 1, N), 1, V))`
## Running
Run script `simulation.m`.
## Future work
Implementation of decoder for arbitrary **SCMA** codebooks parameters.
## Contact
Vyacheslav P. Klimentyev, vklimentyev@gmail.com
## Contributions
Thanks to Alexander B. Sergienko, PhD, Saint Petersburg Electrotechnical University "LETI", Saint Petersburg, Russia.
## Our publications (SCMA investigation)
* [Detection of SCMA signal with channel estimation error](http://ieeexplore.ieee.org/document/7561515/)
* [SCMA detection with channel estimation error and resource block diversity](http://ieeexplore.ieee.org/document/7491765/)
* [A low-complexity SCMA detector for AWGN channel based on solving overdetermined systems of linear equations](http://ieeexplore.ieee.org/document/7779331/)
sincere200
- 粉丝: 5
- 资源: 10
最新资源
- (源码)基于Python和Selenium的jksb系统健康申报助手.zip
- (源码)基于HiEasyX库的学习工具系统.zip
- (源码)基于JSP+Servlet+JDBC的学生宿舍管理系统.zip
- (源码)基于Arduino和Raspberry Pi的自动化花园系统.zip
- (源码)基于JSP和Servlet的数据库管理系统.zip
- (源码)基于Python的文本相似度计算系统.zip
- (源码)基于Spring Boot和Redis的高并发秒杀系统.zip
- (源码)基于Java的Web汽车销售管理系统.zip
- (源码)基于Python的智能家居系统.zip
- (源码)基于Python和CPM模型的中文文本生成系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
- 1
- 2
前往页