Mean of Normal Distribution

9 vues (au cours des 30 derniers jours)
Jon Dewland
Jon Dewland le 28 Oct 2020
Commenté : Adam Danz le 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!

Réponse acceptée

Adam Danz
Adam Danz le 28 Oct 2020
Modifié(e) : Adam Danz le 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 commentaires
Jon Dewland
Jon Dewland le 28 Oct 2020
You are correct, my apologies I misunderstood a normal distribution earlier.
Adam Danz
Adam Danz le 29 Oct 2020
No prob. Glad I could help.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by