MATLAB Answers

0

How to create Gaussian curve to an existing Histogram ?

Hello,
How can I create the Gaussian curve to an existing Histogram in matlab? Which commands should I use?

  0 Comments

Sign in to comment.

1 Answer

Answer by KALYAN ACHARJYA on 2 Sep 2019
Edited by KALYAN ACHARJYA on 2 Sep 2019
 Accepted Answer

histfit
See here, any issue let me know here?

  4 Comments

Show 1 older comment
my code is:
filename1 ='Test.csv'
[d1,tex]= xlsread(filename1);
x=d1(:,1);
y=length(x);
H=histogram(x,10)
is an archive which include my data

Sign in to comment.