Why normalize function has a different result on a matrix vs single value?
显示 更早的评论
I have a matrix like:
B=[ 1.5035; 1.5728; 1.6485; 1.5369; 1.5467; 1.572; 1.5374; 1.787; 1.5825; 1.6905];
Using normalize function like normalize(B,'range') has this result:
ans = 0
0.24444
0.51146
0.11781
0.15238
0.24162
0.11958
1
0.27866
0.65961
But when I use it for a single value like normalize(B(2,:),'range') the result is 0 but the result for row number 2 in ans is 0.24444, why its different and how can I fix it?
采纳的回答
更多回答(1 个)
the cyclist
2020-3-8
编辑:the cyclist
2020-3-8
Your question perplexes me.
In general, the scaling parameters for normalization can depend on every input value in the vector. In the case of the range method, they depend on the minimum and maximum values of the vector. For example, when you normalize your vector B, the result is effectively
normalized_B = (B - min(B)) ./ (max(B)-min(B));
In other words, you subtract the smallest value of B, to get the minimum of the new interval to be 0, and then divide by the range, to get the maximum of the new interval to be 1.
I'm not even sure what to expect for a range normalization of a single value. I think I would have expected NaN.
So, my question is why would you expect the output to be the same? I think this function simply doesn't do the operation you expect it to.
类别
在 帮助中心 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!