What is the pdf of Jakes' Model
7 ビュー (過去 30 日間)
古いコメントを表示
When we model the Doppler shitfs, Jakes' model is a typical model, but what is the probability density function (pdf) of Jakes' model?
Jakes' Model is v=v_max cosθ, what will be the pdf of this?
1 件のコメント
Rik
2022 年 9 月 15 日
This question doesn't look to me like it is about Matlab. Can you explain what I'm missing? I am currently not able to help you, but if you phrase it as a Matlab question, I might be able to help you.
回答 (1 件)
Torsten
2022 年 9 月 15 日
You mean the equation of the pdf in the histogram ?
theta = rand(1000000,1);
v_max = 1.0;
v = v_max*cos(theta);
histogram(v,'Normalization','pdf')
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!