フィルターのクリア

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 Center および File ExchangeWorkspace 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