フィルターのクリア

How to interpret the output of mle()?

1 回表示 (過去 30 日間)
Andrew Pfeil
Andrew Pfeil 2018 年 4 月 12 日
回答済み: Priyank Sharma 2018 年 4 月 27 日
The output of mle() is two unlabeled variables. I am trying to use this function to find the parameters for a uni-variate Gaussian distribution. Which output is mean(mu) and which output is variance(sigma^2)?

採用された回答

Priyank Sharma
Priyank Sharma 2018 年 4 月 27 日
When you use 'mle()' for estimating the parameters for a normal distribution, the output is a maximum likelihood of the parameters in the distribution. For a normal distribution, the function will be executed as,
likelihood = mle(data, 'distribution', 'norm')
Here, the likelihood contains the estimation of the parameters in the distribution. For your Gaussian distribution, the first output of the likelihood refers to mean and second output refers to the variance.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by