Mean of Normal Distribution

18 views (last 30 days)
Jon Dewland
Jon Dewland on 28 Oct 2020
Commented: Adam Danz on 29 Oct 2020
Hello, we are trying to find the normal distribution of an array using the code below. However we are receiving the error that X must be a numeric column vector. Is there any way to apply the function to all columns? Thanks!

Accepted Answer

Adam Danz
Adam Danz on 28 Oct 2020
Edited: Adam Danz on 28 Oct 2020
"Is there any way to apply the function to all columns?"
Yes, use varfun(), assuming the table contains all numeric values.
mu = varfun(@mean, FilledTrtnPos)
or
fitTable = varfun(@(c)fitdist(c,'Normal'), array2table(rand(10,4)))
  4 Comments
Jon Dewland
Jon Dewland on 28 Oct 2020
You are correct, my apologies I misunderstood a normal distribution earlier.
Adam Danz
Adam Danz on 29 Oct 2020
No prob. Glad I could help.

Sign in to comment.

More Answers (0)

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!