フィルターのクリア

How can I use feature extraction methods such as Root Mean square and variance in matlab?

4 ビュー (過去 30 日間)
Shantanu Saxena
Shantanu Saxena 2017 年 1 月 9 日
コメント済み: Image Analyst 2017 年 1 月 9 日
The feature extraction of a certain set of signals is to be done. Feature extraction methods such as Root mean square and variance is to be used to implement it on matlab.

回答 (1 件)

Image Analyst
Image Analyst 2017 年 1 月 9 日
There are functions such as immse(), var(), stdfilt(), blockproc(), to compute them. There are clustering/classification tools in the Statistic and Machine Learning toolbox and Computer Vision System Toolbox to help you use and understand the feature vectors you've generated.
  2 件のコメント
Shantanu Saxena
Shantanu Saxena 2017 年 1 月 9 日
what can I do to implement the features like Mean Absolute Value and variance using their given definition per channel or formula for a given signal in order to generate a feature vector?
Image Analyst
Image Analyst 2017 年 1 月 9 日
Not sure I understand the question, but just use MATLAB functions to make the measurements then string them all together:
featureVector = [theMAV, theVar, theWhatever, someOtherThing, etc];

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by