How to normalize random variables and the function of the random variable using a histogram?

2 ビュー (過去 30 日間)
Sergio Campos
Sergio Campos 2017 年 10 月 25 日
回答済み: Sonam Gupta 2017 年 11 月 6 日
I have a constantly changing random variable that contributes to producing an output. Here is the code:
r = []; %set vector r to be zero
v = 10; %set muzzle velocity to 10 m/s
g = 9.81; %set gravity to 9.81 m/s^2
for i=1:1:iterations
theta = (pi/2)*rand; %creates RV theta to be between 0 and pi/2
r(i) = 2*sin(theta)*cos(theta)*(v^2)/g;
RV_theta(i)=theta; %stores values of RV into variable
end
Now I know how to plot the normalized function and RV as a normal plot but I want the plot to be a histogram. How can I do this for both the RV theta and the output r to get the probability density function?

回答 (1 件)

Sonam Gupta
Sonam Gupta 2017 年 11 月 6 日
To plot a normalized histogram, you may find following file exchange submission helpful:
Also, the following MATLAB Answer talks about normalizing a histogram in MATLAB:
Hope this helps.

カテゴリ

Help Center および File ExchangeHistograms についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by