Plot normal distribution with unknown mean that is normally distributed with known parameters

How can I use Matlab to plot a univariate normal distribution when it has unknown mean but the mean is also normally distributed with known mean of mean and variance of mean?
Eg. N(mean, 4) and mean ~N(2,8)

댓글 수: 1

Hi Skou, you have not specified the variance of the normal distribution itself. Is it a standard normal with variance 1?

댓글을 달려면 로그인하십시오.

 채택된 답변

2 + 8*randn(1, 100) + 4*randn(100,1);
or in more detail
n = 1; m = 100; % number of samples
m1 = 2; s1 = 8; s2 = 4;
m2 = m1 + s1*rand(n, m);
X = m2 + s2*rand(n, m);

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Probability Density Functions에 대해 자세히 알아보기

질문:

2017년 4월 6일

답변:

2017년 4월 7일

Community Treasure Hunt

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

Start Hunting!

Translated by