フィルターのクリア

How to create and plot a Gaussian Dist with specified parameters?

40 ビュー (過去 30 日間)
Quant.Phys42
Quant.Phys42 2019 年 12 月 7 日
回答済み: Sourav Bairagya 2019 年 12 月 10 日
How would you create a Gaussian distribution of some form; G = A*exp -(x-mu)^2/2*sigma^2
where A, mu, and Sigma are specified and given and x are some frequency axis values and how would you plot this?
  1 件のコメント
darova
darova 2019 年 12 月 8 日
What have you tried? What about plot function?

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

回答 (1 件)

Sourav Bairagya
Sourav Bairagya 2019 年 12 月 10 日
You can follow this example to create and plot a Gaussian distribution.
a = -100; b = 100;
x = a + (b-a) * rand(1, 500);
mu = (a + b)/2;
sigma = 30;
f = gaussian_distribution(x, mu, sigma);
plot(x,f,'.')
grid on
title('Gaussian Distribution Curve')
xlabel('X-axis')
ylabel('Gauss Distribution')
function f = gaussian_distribution(x, mu, sigma)
p = -(1/2) * ((x - mu)/sigma) .^ 2;
A = 1/(sigma * sqrt(2*pi));
f = A.*exp(p);
end

カテゴリ

Help Center および File ExchangeDescriptive Statistics and Visualization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by