Mean of Normal Distribution

9 visualizaciones (últimos 30 días)
Jon Dewland
Jon Dewland el 28 de Oct. de 2020
Comentada: Adam Danz el 29 de Oct. de 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!

Respuesta aceptada

Adam Danz
Adam Danz el 28 de Oct. de 2020
Editada: Adam Danz el 28 de Oct. de 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 comentarios
Jon Dewland
Jon Dewland el 28 de Oct. de 2020
You are correct, my apologies I misunderstood a normal distribution earlier.
Adam Danz
Adam Danz el 29 de Oct. de 2020
No prob. Glad I could help.

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by