How can I use feature extraction methods such as Root Mean square and variance in matlab?
조회 수: 4 (최근 30일)
이전 댓글 표시
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.
댓글 수: 0
답변 (1개)
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
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!