i want to normalize these values
1 回表示 (過去 30 日間)
古いコメントを表示
i have mean of different images 80,95,102,108,123 then i want to normalize these values?
how i can i do this?
0 件のコメント
回答 (1 件)
Albert
2013 年 3 月 22 日
Normalization is a quite abstract concept, however assuming what you want is to rank (transform to the [0,1] interval): just subtract the minimum value to them and then divide by the maximim value minus the minimum.
(v - min(v))/(max(v)-min(v))
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!