How can I scales the entries of an array to the interval [0,1] in matlab version 2014a?
2 ビュー (過去 30 日間)
古いコメントを表示
How can I scales the entries of an array to the interval [0,1] in matlab version 2014a? The rescale function in matlab 2014a is not working for this purpose.
0 件のコメント
回答 (2 件)
DGM
2021 年 5 月 23 日
Something like this:
A = rand(5)*10-4 % some random test array
mn = min(A(:));
mx = max(A(:));
B = (A - mn) ./ (mx-mn)
That will scale the data such that its extrema correspond to [0 1]
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!