Skip to content

Instantly share code, notes, and snippets.

@ehzawad
Created October 8, 2020 07:11
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save ehzawad/af668310763e24f6bdf0b9ed39ef464d to your computer and use it in GitHub Desktop.
x = [0.1462, 0.1504, 0.1546, 0.1588, 0.1630, 0.1672, 0.1714, 0.1756, 0.1798];
mu = 0.1630;
sigma = 0.0084;
p = normcdf(x,mu,sigma)
@ehzawad
Copy link
Author

ehzawad commented Oct 8, 2020

x = [0.1378, 0.1420, 0.1462, 0.1504, 0.1546, 0.1588, 0.1630, 0.1672, 0.1714, 0.1756, 0.1798, 0.1840, 0.1882];
mu = 0.1630;
sigma = 0.0084;
p = normcdf(x,mu,sigma)

@ehzawad
Copy link
Author

ehzawad commented Oct 8, 2020

x = [0.1378, 0.1420, 0.1462, 0.1504, 0.1546, 0.1588, 0.1630, 0.1672, 0.1714, 0.1756, 0.1798, 0.1840, 0.1882];
mu = 0.1630;
sigma = 0.0084;
p = normcdf(x,mu,sigma);
pc = p(:);

histfit(x, 8)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment