Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
7 views2 pages

Experiment 8

The document outlines an experiment to generate the probability density function of a Gaussian distribution. It includes a MATLAB program that defines the Gaussian distribution parameters and plots the resulting function. Instructions for executing the program are also provided.

Uploaded by

CHIRAG V CHANDRA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views2 pages

Experiment 8

The document outlines an experiment to generate the probability density function of a Gaussian distribution. It includes a MATLAB program that defines the Gaussian distribution parameters and plots the resulting function. Instructions for executing the program are also provided.

Uploaded by

CHIRAG V CHANDRA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

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:

You might also like