Tagged Questions
The negative-number tag has no wiki summary.
25
votes
10answers
7k views
Why is two's complement used to represent negative numbers?
I'm just curious if there's a reason why in order to represent -1 in binary, two's complement is used: flipping the bits and adding 1?
-1 is represented by 11111111 (two's complement) rather than (to ...
9
votes
1answer
283 views
Is there a Delphi EncodeDate/DecodeDate function version that can handle B.C. dates?
The Delphi functions EncodeDate/DecodeDate seem to be able to handle only dates after 1.1.0001. Are there some implementations of EncodeDate/DecodeDate that can handle B.C. tDateTime values?
8
votes
4answers
90 views
How can I efficiently scrub Ruby's negative zero float?
In Ruby, 0.0 * -1 == -0.0.
I have an application where I multiply a bunch of Float objects with -1, but I don't like the -0.0 in the output, since it's confusing.
Is there a smart way of making ...
6
votes
1answer
55 views
Python Argparse: Issue with optional arguments which are negative numbers
I'm having a small issue with argparse. I have an option xlim which is the xrange of a plot. I want to be able to pass numbers like -2e-5. However this does not work - argparse interprets this is a ...
5
votes
4answers
399 views
representation of negative numbers in c?
How does c represent negative integers! Is it by 2's complement representation or by using the msb?
-1 in hexadecimal is ffffffff.
So please clarify me in this regard.
4
votes
4answers
375 views
negative numbers in python
I've found some strange behaviour in python regarding negative numbers:
>>> a = -5
>>> a % 4
3
Could anyone explain what's going on?
3
votes
1answer
121 views
C checking for signed number representation
The following way of checking for the signed number representation checks for twos complement correctly on my machine, but I dont have ones complement or signed magnitude machines to check it. Would ...
3
votes
2answers
155 views
JTextArea only with numbers, but allowing negative values
I have a JTextArea which only has to accept numbers. This is my code:
DocumentFilter onlyNumberFilter = new AxisJTextFilter();
final JTextArea areaTextoXMin = new JTextArea(String.valueOf(xMin));
...
3
votes
2answers
581 views
Compilers and negative numbers representations
Recently I was confused by this question. Maybe because I didn't read language specifications (it's my fault, I know).
C99 standard doesn't say which negative numbers representation should be used by ...
2
votes
1answer
91 views
sprintf adds minus sign to zero after rounding
Let's do some rounding
> round(-0.001, 2)
[1] 0
I receive zero.
Now in combination with sprintf
> sprintf("%f", round(-0.001,2))
[1] "-0.000000"
Why is there a minus sign? I expected ...
2
votes
4answers
566 views
2's complement hex number to decimal in java
I have a hex string that represents a 2's complement number. Is there an easy way (libraries/functions) to translate the hex into a decimal without working directly with its bits??
E.G. This is the ...
2
votes
3answers
2k views
Change NSNumberFormatter's negative format from (xxx.xx) to -xxx.xx
I want to change my NSNumberformatter from displaying negative numbers with parenthesis around them to putting the minus sign in front (or whatever the localized standard is).
I would assume I could ...
2
votes
3answers
14k views
String.Format(“{0:C2}”, -1234) (Currency format) treats negative numbers as positive
Hi I am using String.Format("{0:C2}", -1234)
to format numbers.
is always formats the amount to a positive number, while I want it to become $*-*1234
1
vote
3answers
60 views
Java: Use Math.abs and keep a count of how often it was used for later use
I'm trying to write a program that modifies fractions and I need to make sure that the "-" negative is properly outputted only once. If the user inputs a numerator and a denominator and puts them ...
1
vote
1answer
54 views
Allow negative integers for Regular Expressions in MATLAB
Does regular expressions in MATLAB take it a negative integer, such as "-1". My code doesn't seem to run well due to this error "Index exceeds matrix dimensions." and i know it has something to do ...
1
vote
2answers
91 views
Format Negative numbers in parenthesis BUT NOT with $ symbol?
I have seen all over the internet to format a NEGATIVE double value with a parenthesis WITH a $ symbol ie. currency type.
I am looking for a .NET format string, to format
12345.67 = 12,345.67
...
1
vote
2answers
77 views
If css(“top”) is or greater then -70 (negative value)
This is my piece of code which does not work.
if ( $("div#verticalScrollbar").css("top") >= -70+"px" ) {
alert("does work!");
}
I literally WANT to say: If the top position is -70 or ...
1
vote
8answers
1k views
Why does multiplying a double by -1 not give the negative of the current answer
I am trying to multiply a double value by -1 to get the negative value. It continues to give me a positive value
EDIT: I am putting all the code up.
public class DecToTime {
public static void ...
0
votes
1answer
67 views
storing negative value in mysql
How can I store negative value in mysql decimal? I have data from DMS to Decimal having negative values, so it is decimal and negative. So what can I use to store such value?
0
votes
2answers
81 views
How to make CSS background-position with negative left value visible?
I have a <ul> element with list-style:none; and <li> with padding:20px; and background-image:url(images/bullet.gif) no-repeat -20px 10px;.
The bullet is not visible.
The workaround I'm ...
0
votes
1answer
36 views
php pdo: prepare() negatives become positive
I'm using a prepared statement to insert values from a form into a Db, and some of the values are negative.
# html
<input type="radio" name="opinion" value='-2' />
<input type="radio" ...
0
votes
1answer
75 views
MS Access - Positive and Negative values in table are all positive once selected in query
I have a field in a table that contains positive and negatives numbers. The field is a number field. I need to be able to sum the field according to ID. It didn't seem to be returning the expected ...
0
votes
3answers
105 views
Subtraction of 2 negative integer (two's complement) never overflowing
I came across this in a computer architecture textbook:
Subtracting a strictly negative integer from another strictly negative integer (in two's complement) will never overflow.
The textbook ...
0
votes
3answers
86 views
How to figure out if the first index in an array is a negative sign
I am trying to write a bool function that looks at the first index in an array which contains a positive or negative number and classifies if it is a negative sign (i.e. -). If it is a negative Sign ...
0
votes
2answers
57 views
How to represent -0 in binary
This question concerns converting a floating point number that is less than abs(1) and negative to 32.32 format, for example: -0.1234.
When this is converted to 32.32, the integer portion and ...
0
votes
1answer
98 views
Fastest way to make Negative numbers
Is there any Fastest way for this line?
ballAngelRadianVector = -ballAngelRadianVector;
and also this:
ballDegree = fee - ballDegree ;
0
votes
3answers
164 views
Negative/positive numbers in object inverting themselves?
So I'm sure the answer to this will be something simple and I'll read it and immediately commence epic facepalming, but at the moment I've spent an entire day wondering why the heck this isn't working ...
0
votes
4answers
221 views
how to convert -1 to 1 with javascript?
how to convert -1 to 1 with javascript ?
var count = -1; //or any other number -2 -3 -4 -5 ...
or
var count = 1; //or any other number 2 3 4 5 ...
result should be
var count = 1; //or any other ...
0
votes
1answer
931 views
Allow only positive number with text input mask
I true to set a text input mask which only allow numbers from 0-999, or even better 1-999.
So I tried the mask "##0", but unfortunately this also allows negative numbers. Is there a way to allow only ...