Experiment:08
Generate the probability density function of Gaussian distribution function
Program:
%gaussian distribution
clear all;
close all;
clc;
x=[0:0.01:2];
m=1;
sd=2;
g=normpdf(x,m,sd);
plot(x,g);
xlabel('x');
ylabel('Amplitude');
title(' Gaussian Distribution Function');
Proceduce:
1) Go to new and select new function.
2) Type the above program.
3) Take the corresponding output.
Waveform: