Tagged Questions
Tag related to problems that involve a number whose value is less than zero
14
votes
2answers
538 views
Detecting a negative 0 stored as a double in C++
I am doing some mathematical calculations (trying to convert Matlab code into C++, using VS2010) and I need to be able to tell if at some point I get a negative 0.
According to the IEEE standard ...
12
votes
11answers
2k views
How does java do modulus calculations with negative numbers?
Am I doing modulus wrong? Because in Java -13 % 64 is supposed to evaluate to -13 but I get 51.
12
votes
1answer
2k views
PHP profiling with microtime(): Negative time?
For a very simple profiling I use microtime() like this:
$now = microtime();
for (...) {
// do something
echo microtime() - $now;
$now = microtime();
}
Now, the output of the echo line ...
8
votes
1answer
508 views
Why doesn't my Haskell function accept negative numbers?
I am fairly new to Haskell but do get most of the basics. However there is one thing that I just cannot figure out. Consider my example below:
example :: Int -> Int
example (n+1) = .....
The ...
7
votes
3answers
6k views
Javascript negative number
I want to check if a number is negative. I'm searching for the easiest way, so a predefined javascript function would be the best but I didn't found yet anything, here is what I have so far but I ...
7
votes
12answers
27k views
Make a negative number positive in Java
I'm sure this is a very simple question! I have a Java method in which I'm summing a set of numbers. However, I want any negatives numbers to be treated as positives. So (1)+(2)+(1)+(-1) should equal ...
6
votes
6answers
700 views
CSS Negative Margin
Are negative margins in CSS a good/bad practice? Will using them cause confusion/development issues?
6
votes
5answers
322 views
Unsigned negative primitives?
In C++ we can make primitives unsigned. But they are always positive. Is there also a way to make unsigned negative variables? I know the word unsigned means "without sign", so also not a minus (-) ...
5
votes
2answers
202 views
C standard on negative zero (1's complement and signed magnitude)
All of these functions gives the expected result on my machine. Do they all work on other platforms?
More specifically, if x has the bit representation 0xffffffff on 1's complement machines or ...
5
votes
5answers
481 views
Negative array indexes in C?
I was just reading some code and found that the person was using arr[-2] to access the 2nd element before the arr, like so:
|a|b|c|d|e|f|g|
^------------ arr[0]
^---------- arr[1]
...
5
votes
2answers
1k views
WPF 'magic' negating brush?
I have a gradient that changes its colors, I want the text inside it should always be visible.
I rather doing it dynamically if there is any out-the-box resource; I want a 'magic brush' that negates ...
4
votes
3answers
1k views
Dijkstra's algorithm with negative weights
Can we use Dijkstra's algorithm with negative weights?
STOP! Before you think "lol nub you can just endlessly hop between two points and get an infinitely cheap path", I'm more thinking of one-way ...
4
votes
2answers
439 views
How to efficiently compare the sign of two floating-point values while handling negative zeros
Given two floating-point numbers, I'm looking for an efficient way to check if they have the same sign, given that if any of the two values is zero (+0.0 or -0.0), they should be considered to have ...
4
votes
6answers
2k views
working with negative numbers in python
Thank you for your help in advance. I am a student in a concepts of programming class. The lab is run by a TA and today in lab he gave us a real simple little program to build. It was one where it ...
3
votes
3answers
115 views
Purpose of casting -1 to uint32?
This is probably a really silly question to experienced C++ developers, but what is the purpose of casting a -1 to uint32? I am translating a program from C++ to C# and there are many occasions when I ...
3
votes
4answers
147 views
Cube root of a negative number
I'm trying to find the cube root of a negative number but I get a NaN. Any help?
System.out.println(Math.pow(-8, 1.0 / 3.0));
3
votes
7answers
1k views
Random and negative numbers
I have to generate numbers in range [-100; +2000] in c++. How can I do this with rand if there is only positive numbers available? Are there any fast ways?
3
votes
3answers
186 views
OCaml: Matching with any negative
Is there a way to get pattern matching to match my value with any negative number? It does not matter what the negative number is I just need to match with any negative.
I have accomplished what I ...
2
votes
3answers
74 views
C Programming factorial outputting wrong values
int main (void)
{
int i;
for (i=1; i<=20; i++) {
int j;
unsigned long long fac = 1;
for ( j = 1; j<=i; ++j) {
fac *= j;
}
printf ("%2i! = ...
2
votes
2answers
74 views
how to search negative number in solr?
In solr I want to search one field with negative number like nodeId:-1.
in schema.xml, I defined it like this:
<field name="nodeId" type="int" indexed="true" stored="true" />
solr throws error ...
2
votes
5answers
131 views
Negative array index in C
There have been other question/answers on negative array in C in the forum, but i would request the answer to these for a 32-bit compiler :
If we have an array defined int test_array[5] = {1,2,3,4,5};
...
2
votes
5answers
216 views
Python Calculator Divide by Zero/Sqrting a Neg. Int. crashing program
Alright, I'm doing this for a project and whenever I attempt to have it divide by zero or square root a negative number that program closes out. I've attempted to find something I can insert into the ...
2
votes
6answers
101 views
PHP var becoming negative
I have this code :
<?php
$integer = 33963677451;
$integer &= 0xFFFFFFFF;
echo $integer;
?>
But, when I execute it, the output is
-396060917
The same function in Python
if __name__ == ...
2
votes
6answers
140 views
Javascript Math Object Methods - negatives to zero
in Javascript I can't seem to find a method to set negatives to zero?
-90 becomes 0
-45 becomes 0
0 becomes 0
90 becomes 90
Is there anything like that? I have just rounded numbers.
2
votes
3answers
233 views
Negative values in C# DateTime
Is there a way to set negative values when calling the DateTime constructor.
like this:
DateTime date = new DateTime(2011, 2, -1);
would be the same as:
DateTime date = new DateTime(2011, 1, 31);
...
2
votes
1answer
514 views
Best way to make Java's modulus behave like it should with negative numbers?
In java when you do
a % b
If a is negative, it will return a negative result, instead of wrapping around to b like it should. What's the best way to fix this? Only way I can think is
a < 0 ? b ...
2
votes
1answer
476 views
SOLR date faceting and BC / BCE dates / negative date ranges
Date ranges including BC dates is this possible?
I would like to return facets for all years between 11000 BCE (BC) and 9000 BCE (BC) using SOLR.
A sample query might be with date ranges converted ...
2
votes
6answers
836 views
Right shifting negative numbers in C
I have a C code in which I do the following
int nPosVal = +0xFFFF; // + Added for ease of understanding
int nNegVal = -0xFFFF; // - Added for valid reason
Now when I try the following
printf ...
2
votes
1answer
335 views
DrawItemEventArgs' “Index” property goes negative sometimes(C#)(RESOLVED)
I have an owner-drawn listbox control.
The problem is that sometimes the DrawItemEventArgs argument passed to my DrawItem event-handler has an Index property of "-1". This is my unethical fix:
...
1
vote
1answer
40 views
Using negative number in PHP DateTime::modify()
This code:
$dateTime = new DateTime;
$dateTime->modify('+ -60 seconds');
works in 5.2.6 but not in 5.3.
I have already identified a few solutions but I just want to know how those who also ...
1
vote
2answers
77 views
CreateFile Returns negative handle
Any ideas why the createfile() function would be returning -1.
Handle = CreateFile(filename, &H80000000, 0, 0, 3, &H80, 0)
This is run a few times. I was thinking perhaps maybe the file is ...
1
vote
3answers
97 views
Ruby - negative random numbers
I know how to generate numbers with rails but I don't know how to generate negative numbers ?
prng.rand(1..6) for random of [1, 2, 3, 4, 5, 6]
http://www.ruby-doc.org/core-1.9.2/Random.html says ...
1
vote
2answers
85 views
how to convert negative integer value to hex in python
I use python 2.6
>>> hex(-199703103)
'-0xbe73a3f'
>>> hex(199703103)
'0xbe73a3f'
Positive and negative value are the same?
When I use calc, the value is FFFFFFFFF418C5C1.
1
vote
2answers
171 views
Convert a Negative Number with Parentheses to a Minus in MYSQL
I have a MYSQL database with Negative numbers that are enclosed in parenthesis
eg. (14,500) which is supposed to be -14500.
I am storing the numbers as varchar. I am trying to convert all the ...
1
vote
2answers
485 views
Convert a raw negative rgb int value back to a 3 number rgb value
Ok so I'm working on a program that takes in an image, isolates a block of pixels into an array, and then gets each individual rgb value for each pixel in that array.
When I do this
//first pic of ...
1
vote
2answers
803 views
Problems with a shunting yard algorithm
I have successfully implemented a shunting yard algorithm in java. The algorithm itself was simple however I am having trouble with the tokenizer. Currently the algorithm works with everything I want ...
1
vote
6answers
266 views
Java sum 2 negative numbers
I'm trying to convert a function in java to pl/pgsql, and one problem that I found is when I'm trying to sum 2 negative numbers, and a get a positive number, more specifically :
public void sum(){
...
1
vote
1answer
183 views
processing negative number in “accounting” format in R
I have dataset, which negative value is presented with a bracket around the number i.e. (10)==-10, it is in csv format, how can I process it so that R will interpret the (10) as -10? Thank you.
...
1
vote
2answers
403 views
UIScrollView with tiles with negative origin
I have a dot that's moving around the screen. As it exceeds the bound of the scroll view, a new tile is create that the dot can move onto and the size of the scroll view is increased. I keep track ...
1
vote
2answers
790 views
ScrollViewer with Canvas, auto-resize canvas to content including negative space
I have a canvas in a scrollviewer.
To be able to use the scrollviewer, I've overridden the Canvas's MeasureOverride method to return the size of all children.
This works fine, except that the canvas ...
1
vote
2answers
134 views
Negative coordinates in pygame
What would be the best way to use negative coordinates in pygame?
At the moment I have a surface that is 1.5 times the original surface then everything that needs to be drawn is shifted up by a ...
1
vote
3answers
290 views
negative selection SQL Query
I have been tasked with returning a negative selection from our sql database. I'll define the criteria as best i can. Thus far I haven't crafted a query that has worked.
Business Table
[Bus Name] ...
1
vote
2answers
158 views
how to align floats in IE6
Good day!
I am having problems displaying floated paragraphs and images in IE6. There was no problem displaying those in Opera and Firefox,though. I have three divs inside a container. Each div has ...
1
vote
4answers
431 views
Array construction and negative numbers
I was implementing a routing algorithm in javascript, but when I assign a negative one variable in the array gives me this error: invalid array length.
var node = new Array()
node[0] = new Array(6,7)
...
1
vote
3answers
479 views
Inverting image using the Python Image Library module
I'm interested in learning how to invert (make a negative of) an image using the python image libary module.
I cannot however, use the ImageOps function 'invert.' I need another solution, using the ...
1
vote
2answers
123 views
'if' scenario in an equation. How do I implement it?
Basically I've been trying to make a working hours calculator and I've run into a problem. When the start time's value is greater than the finish time (eg. start is 23 and finish is 19), the result ...
1
vote
3answers
181 views
After reading in bytes from file, most are right except 1 is wrong and negative
In Java, I just read a file into a ByteBuffer. When I started checking to make sure that the ByteBuffer contained the right bytes, I noticed that it had mostly the correct start and end bytes, except ...
1
vote
1answer
631 views
SQL Server 2000 distinguishes between decimal zero 0.00 and -.00 while ADO.NET does not
We're using SQL Server Standard Edition 8.00.760 (SP3) on a Small Business Server 2003 platform.
While tracking down an inexplainable System.Data.DBConcurrencyException for a Strongly Typed DataSet, I ...
1
vote
5answers
2k views
Handle negative time spans
in my output of a grid
i calculate a TimeSpan and take its TotalHours ex. (Eval("WorkedHours") - Eval("BadgedHours")).TotalHours
goal is to show this TotalHours as : 39:44 so. First value 7.5 to ...
0
votes
1answer
70 views
Negative numbers in ARM assembly
I'm currently struggling with how to use negative numbers in ARM assembly. Let's say I have a simple code like this:
MOV R0, #0
SUB R0, R0, #1
SWI 4
R0 will obviously store the value 0xFFFFFFFF, ...