Receiverd Signal at User

조회 수: 1 (최근 30일)
Senghour Mey
Senghour Mey 2023년 1월 30일
답변: Zuber 2023년 2월 14일
Dear all friend
I would like to convert this equation to matlab.
please Kindly help me.
  댓글 수: 1
Matt J
Matt J 2023년 2월 1일
This looks very similar to your earlier question, whose answer you accepted,
What is the new challenge here, as compared to that one?

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

답변 (1개)

Zuber
Zuber 2023년 2월 14일
I understand that you are facing issue regarding how to express the above equation in the form of MATLAB code.
I assume that the variables specified in the equation above are already created in workspace with all the dimensionality constraints satisfied. Let these variables be denoted in MATLAB as follows:-
  • h : h_r_H
  • Θ : theta
  • G : G
  • h : h_d_H
  • w: w
  • s: s
  • n: n
  • σ: sigma
Now, this can be solved as follows: -
y = (h_r_H*theta*G + h_d_H) *w*s + n
where the variable n (white gaussian noise with variance σ) can be generated as follows:-
n = normrnd(0,sigma)
For further information regarding the function normrnd(), refer to the documentation: https://www.mathworks.com/help/stats/normrnd.html
I hope this answers your query.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by