How do you write -0 in an array on matlab?
7 次查看(过去 30 天)
显示 更早的评论
I have recently been tasked with sorting a variety of numerical values and Nan's using a shell sort function. It works so far but whenever I want to sort -0 it always comes out as 0 in the sorted list. Any ideas?
This is the full question: Give the output of a program run that proves it can generates minus zero as a floating-point object that is not identical to zero.
0 个评论
回答(2 个)
Stephen23
2016-2-9
编辑:Stephen23
2016-2-9
Note that according to standard definitions minus zero has the same value as positive zero: "...regarded as equal by the numerical comparison operations". This means they cannot be sorted (which by definition requires a value comparison function to provide the order):
>> -0<0
ans =
0
So sort will not work for you:
>> [out,idx] = sort([0,-0])
out =
0 0
idx =
1 2
If you want to sort them separately you will need to implement your own sort algorithm. The most reliable way to test for minus zero is to use a divide-by-zero and check the Inf sign:
>> 1./[-0,0]
ans =
-Inf Inf
Note that negative zero is not displayed in MATLAB:
>> x = 1*(-0)
x =
0
>> 1/x
ans =
-Inf
Interestingly the sort example above keeps the negative zero in the output:
>> 1./out
ans =
Inf -Inf
3 个评论
Guillaume
2016-2-9
Sorting NaN (Not a Number!) is an antinomy. By definition, there's no ordering on NaN.
If you come across a program that sorts NaN, then that program is not working properly.
Walter Roberson
2016-2-9
The sort routine counts nan, removes them, sorts, adds nan to an end. It does not keep track of which nan (there are many many representations of nan), just slams in standard nan.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!