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!