フィルターのクリア

How to find guassian distribution

3 ビュー (過去 30 日間)
Silpa K
Silpa K 2019 年 11 月 6 日
回答済み: Mahesh Taparia 2019 年 11 月 20 日
How to find gaussian distribution of an image using mean=128 and variance=1689.2347.
  1 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 11 月 6 日
Can you elaborate more? Using imhist you can estimate the PDF

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

回答 (1 件)

Mahesh Taparia
Mahesh Taparia 2019 年 11 月 20 日
Hi Shilpa,
It seems either you want to generate the histogram of an image or you want to generate a matrix which follows guassian distribution with mean 128 and variance 1689.2347.
You can generate histogram by using imhist command as
imhist(image)
For more information refer to documentation page of imhist in the link given below:
You can generate guassian random variable using normrnd command.
A=normrnd(128, sqrt(1689.2347),[m,n]);
For more information refer to the below link of documentation page of normrnd command:

Community Treasure Hunt

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

Start Hunting!

Translated by