Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How to perform normalization after feature extraction process?

조회 수: 1 (최근 30일)
Yuvaraj
Yuvaraj 2013년 4월 29일
hi After feature extraction, i got 2520*210 matrix. Now i want normalize these values separately by subject wise? Kindly help me???? Urgent...

답변 (1개)

Image Analyst
Image Analyst 2013년 4월 29일
I have no idea. Do you have 210 different features that you measured, and you have done that for 2520 subjects? What does normalization mean to you? Because it's not just some one single definition carved in stone that applies to every situation in the universe.
  댓글 수: 2
Yuvaraj
Yuvaraj 2013년 4월 30일
편집: Image Analyst 2013년 4월 30일
2520*210 is my total feature vector. I want to normalize all the data to 0-1. I don't know how to do loop ? by this formula i have to normalize the data.
s=xx-mean(xx)
norm = s/max(abs(s))
The program is:
[m n]=size(features) %2520*280
for i=1:m
for j=1:n
s(i,j)=(features (i)-mean(features(1:m)));
%norm_features(i,:) = s(i,:)/ max( abs(s(i,:)));
end
end
Kindly help me.
Image Analyst
Image Analyst 2013년 4월 30일
Please answer my first question - you forgot to do that. I would think you'd need to normalize each feature (column or row) independently of all the other features because they're different features and most likely they don't have the same ranges.

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by