Normalization of the data

조회 수: 1 (최근 30일)
OriAlpha
OriAlpha 2018년 12월 19일
댓글: OriAlpha 2018년 12월 19일
Hello,
i have 5 files in mat format
my main point is to normalization the data
which i consider 01 has the reference and all other i have to normalize to first file which is with 01
ie
01-03
01-022
01-025
01-038
** Number are files named has been attached below
i have to nomalize to first reference values
how can i do this
files are attached below
  댓글 수: 1
Image Analyst
Image Analyst 2018년 12월 19일
Why not just divide all arrays by the "01" array?

댓글을 달려면 로그인하십시오.

채택된 답변

KSSV
KSSV 2018년 12월 19일
Let x be your data...
x_normalized= (x-min(x(:)))/(max(x(:))-min(x(:))) ;
  댓글 수: 1
OriAlpha
OriAlpha 2018년 12월 19일
each files are array which has 50 values

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by