How can I scales the entries of an array to the interval [0,1] in matlab version 2014a?
1 view (last 30 days)
Show older comments
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 Comments
Answers (2)
DGM
on 23 May 2021
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 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!