How do you write -0 in an array on matlab?
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (2)
Stephen23
le 9 Fév 2016
Modifié(e) : Stephen23
le 9 Fév 2016
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 commentaires
Guillaume
le 9 Fév 2016
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
le 9 Fév 2016
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.
Voir également
Catégories
En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!