Statistical features from a vector
10 ビュー (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
採用された回答
Shashank Prasanna
2013 年 1 月 15 日
Here is a list of all the summary statistics you can calculate on your data:
These are in addition to the basic one Doug mentioned
Also feel free to go through these nice examples:
2 件のコメント
Shashank Prasanna
2013 年 1 月 15 日
Please note you will need the statistics toolbox to use these functions
その他の回答 (1 件)
Doug Hull
2013 年 1 月 15 日
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 件のコメント
Matt Kindig
2013 年 1 月 15 日
And if you have the Statistics toolbox, there is also the kurtosis() and skewness() functions.
参考
カテゴリ
Help Center および File Exchange で Get Started with Statistics and Machine Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!