Statistical features from a vector
Mostrar comentarios más antiguos
I need to extract around 15 statistical features form a vector, such a minimum, maximum, mean, std, kurtosis, skewness. Is there any other features in matlab like this?
Respuesta aceptada
Más respuestas (1)
Doug Hull
el 15 de En. de 2013
0 votos
All of them exist as functions in MATLAB. Search the doc for each one of those, and you should find the specific function.
Some of the ones you mention here are:
- min(y)
- max(y)
- mean(y)
- std(y)
2 comentarios
Matt Kindig
el 15 de En. de 2013
And if you have the Statistics toolbox, there is also the kurtosis() and skewness() functions.
Berbia
el 15 de En. de 2013
Categorías
Más información sobre Descriptive Statistics and Visualization en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!