Normalization of the data

1 Ansicht (letzte 30 Tage)
OriAlpha
OriAlpha am 19 Dez. 2018
Kommentiert: OriAlpha am 19 Dez. 2018
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 Kommentar
Image Analyst
Image Analyst am 19 Dez. 2018
Why not just divide all arrays by the "01" array?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

KSSV
KSSV am 19 Dez. 2018
Let x be your data...
x_normalized= (x-min(x(:)))/(max(x(:))-min(x(:))) ;
  1 Kommentar
OriAlpha
OriAlpha am 19 Dez. 2018
each files are array which has 50 values

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Large Files and Big Data finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by