Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Fitting the most appropriate distribution to data

1 回表示 (過去 30 日間)
Hari krishnan
Hari krishnan 2018 年 10 月 16 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have data stored in the variable 'read_colony_observation_data_goodnest'. I am making a histogram of this data and trying to fit an exponential distribution to it. Rather than fitting one distribution, its giving me a series of fits. Any help will be appreciated.
all_recruitment_colony_data = 'control_recruitment_duration_combined.xlsx';
read_colony_observation_data_goodnest = xlsread(all_recruitment_colony_data);
histogram(read_colony_observation_data_goodnest,'Normalization','pdf');
xlabel('time (sec)')
ylabel('pdf')
hold on
pd = fitdist(read_colony_observation_data_goodnest,'Exponential');
y = pdf(pd,read_colony_observation_data_goodnest);
plot(read_colony_observation_data_goodnest);
Excel file of data is attached.
  1 件のコメント
Hari krishnan
Hari krishnan 2018 年 10 月 17 日
solved.

回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by