필터 지우기
필터 지우기

Need basic MATLAB code upon Rate Splitting Multiple Access (RSMA)

조회 수: 19 (최근 30일)
Rajashekhar
Rajashekhar 2023년 7월 13일
댓글: 苏骏 钱 2024년 4월 5일
Do anybody have basic MATLAB code upon Rate Splitting Multiple Access (RSMA), i.e. to get basic idea about the implementation of RSMA in MATLAB, Generation of common and private messages in MATLAB, etc...??
  댓글 수: 3
Rajashekhar
Rajashekhar 2024년 4월 1일
Prof Bruno Clerckx has provided some rate-splitting codes in his website, you can check those.
苏骏 钱
苏骏 钱 2024년 4월 5일
Sorry, I couldn't find the website you mentioned. Could you please provide me with a specific URL?"

댓글을 달려면 로그인하십시오.

답변 (1개)

Parth Saraf
Parth Saraf 2023년 7월 13일
편집: Parth Saraf 2023년 7월 13일
Hi,
This is the basic Matlab code for the implementation of RSMA which I had tried. This might be helpful to you.
M = 4;
N = 100;
K = 2;
s = randn(M, N);
i = randn(M, N);
n = randn(M, N);
Ps = 1;
Pi = 0.5;
X = sqrt(Ps)*s + sqrt(Pi)*i + n;
Rxx = (1/N) * (X * X');
[V, D] = eig(Rxx);
[~, indices] = sort(diag(D), 'descend');
Us = V(:, indices(1:M - K));
Ui = V(:, indices(M - K + 1:end));
w = (Us * Us' + Ui * Ui') \ Us;
y = w' * X;
Hope this helps!
  댓글 수: 1
Rajashekhar
Rajashekhar 2023년 7월 13일
편집: Rajashekhar 2023년 7월 13일
Thank you for answering. But I think it is not correct as there are no specific common and private messages anywhere in the code.
If possible provide the MATLAB code to plot the Weighted sum rate (WSR) versus SNR comparisons of 1-layer Rate-Splitting (or any other RSMA scheme), NOMA, SDMA, Multicast schemes.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by