How to normalize values in a matrix to be between 0 and 1?
316 views (last 30 days)
Show older comments
I have a matrix Ypred that contain negative values and I want to normalize this matrix between 0 and 1
Ypred=[-0.9630 -1.0107 -1.0774
-1.2075 -1.4164 -1.2135
-1.0237 -1.0082 -1.0714
-1.0191 -1.3686 -1.2105];
I'm new in matlab, please help me, there is a matlab function or toolbox that can do this? thanks
Accepted Answer
Jos (10584)
on 8 Apr 2015
Edited: Jos (10584)
on 8 Apr 2015
This can be simply done in a two step process
- subtract the minimum
- divide by the new maximum
normA = A - min(A(:))
normA = normA ./ max(normA(:)) % *
note that A(:) makes A into a long list of values. Otherwise min(A) would not return a single value ... Try fro yourself!
- Edited after comment ...
2 Comments
Jos (10584)
on 8 Apr 2015
Sorry! The second line of code is wrong ;-) It should read
normA = normA ./ max(normA(:))
More Answers (3)
James Tursa
on 8 Apr 2015
NormRows = sqrt(sum(Ypred.*Ypred,2));
Ynorm = bsxfun(@rdivide,abs(Ypred),NormRows);
3 Comments
Tubi
on 22 Mar 2018
Many Thanks John, I believe you are right in your suggestion since they are mostly common MATLAB commands and functions.
c4ndc
on 12 Aug 2017
Hello, What is the name of this norm in the accepted answer? (Euclidean, Frobenius etc.)
1 Comment
Jan
on 12 Aug 2017
Please post comments to answers in the section for the comments. You message is not an answer.
The accepted answer does not contain a norm at all, but a "normalization". A matrix norm would reply a scalar, the normalization replies a matrix with the same size, but with shifted and scaled values.
See Also
Categories
Find more on Operating on Diagonal Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!