How is deep learning applied in telecommunications?

2 visualizzazioni (ultimi 30 giorni)
Hello everyone,
I work in the field of telecommunications. My goal is to plot BER values against certain SNR values. I send a certain number of bits to MATLAB and determine how many of them are true and how many are false. For example, 0 dB -> 0.1668; 5 dB -> 0.0518; 0.0101.
The code I wrote in MATLAB works for SNR in decibels, I am trying to find the BER value for each SNR value. In addition to classical communication, I want to do these operations with Deep Learning in MATLAB.
For example, it will be very good for my work to do the following:
1) For example, I want to have the following Maximum-Likelihood process done by Deep learning, but I don't know how to do it.
for loop_h=1:nT
for loop=1:M
Metrics(loop,loop_h) = norm(y-H(:,loop_h)*ss(1,loop))^2; %Here, "ss" stands for M-QAM modulation symbols and H stands for Rayleigh fading channel
end
end
2) I would like to have channel estimation if possible. For example, I express the Rayleigh channel as follows. How can I predict this with Deep learning in MATLAB?
H=sqrt(0.5).*(randn(nR,nT) + 1i*randn(nR,nT));
Any suggestions on how I can do these operations, a book, a piece of code, etc.? I would appreciate it if you could share it with me. Thanks in advance for your suggestions and help.

Risposte (1)

Santosh Fatale
Santosh Fatale il 21 Dic 2022
Hi Fatih,
I believe the following example could be useful for you to understand the usage of Deep Learning for performing channel estimation.

Categorie

Scopri di più su LTE Toolbox in Help Center e File Exchange

Prodotti


Release

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by