フィルターのクリア

What equivalent MATLAB commands plots PDF of data like 'hist' command plots histogram of data.

4 ビュー (過去 30 日間)
What command does the ploting of the PDF of a data in similar way as 'hist' command plots the histogram? I have a set of data from 1 to 500. My data ranges between -2 and 2. I want to plot the pdf such that the x-axis contains my data (which is -2 to 2 and not 1 to 500 ) while the y-axis is the PDF. When done, this should look similiar to the the result obtained in the 'hist' command.
NOTE: I do not want the result of the 'hist' command and the pdf on the same graph.

採用された回答

Star Strider
Star Strider 2021 年 9 月 12 日
See if the histfit function does what you want.
.
  4 件のコメント
ojonugwa adukwu
ojonugwa adukwu 2021 年 9 月 12 日
It does it. Thanks so much.
Meaning there is no single command like hist that plots the PDF of the data directly then.
Star Strider
Star Strider 2021 年 9 月 12 日
As always, my pleasure!
Correct. There is no one command that will estimate the parameters and plot the distribution, at least that does it in the way you want. The handle of histfit has two components, the first being the handle to the bar object and the second being the handle to the line object, so in that sense, it is close. However it will not plot it exactly as you want, with the limits you require, so to get those requires the approach I use in my previous Comment.
.

サインインしてコメントする。

その他の回答 (1 件)

Ive J
Ive J 2021 年 9 月 12 日
編集済み: Ive J 2021 年 9 月 12 日
Something like this should work:
data = normrnd(10,1,100,1);
pd = fitdist(data, 'Normal');
x_values = 5:0.1:15;
y_values = pdf(pd, x_values);
plot(x_values, y_values, 'LineWidth', 2)

タグ

製品


リリース

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by