matlab code for cdf of nakagami -m distribution

11 views (last 30 days)
i dont know how to write this gamma(m,my/ydash) on matlab
  3 Comments
unknown name
unknown name on 26 Jan 2022
can you please give me a code for this expression. I am not very good at matlab, it is taking a lot of time, and i have to submit this work soon
Torsten
Torsten on 26 Jan 2022
x=0:0.1:10;
m= 0.2;
omega = 2;
y = gammainc(m,m/omega*x.^2)/gamma(m);
plot(x,y)
according to
en.wikipedia.org/wiki/Nakagami_distribution

Sign in to comment.

Accepted Answer

unknown name
unknown name on 26 Jan 2022
the plot should be like this. I just want a code for m=1 m=2 and m=0.5
  2 Comments
Torsten
Torsten on 26 Jan 2022
Edited: Torsten on 26 Jan 2022
These curves can't be CDF curves because they don't approach 1.
They show a certain probability P over a model parameter gamma.
unknown name
unknown name on 26 Jan 2022
the plot should be similar to this. can you give the code

Sign in to comment.

More Answers (1)

unknown name
unknown name on 27 Jan 2022
thankyou so much it worked

Community Treasure Hunt

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

Start Hunting!