a number less than zero
1
vote
1answer
25 views
Negative numbers of bins
I have the following code that returns the values of a histogram:\
[a,b]=hist(x(:),unique(x));
Since I have negative values in x, I get for instance the value -3, and thus get an error, since the ...
0
votes
1answer
17 views
MySQL Data Type to Store Negative Number
I have a rating system that ranges from -1 to 5 through 0.
So i need to store the following values
-1
0
1
2
3
4
5
Which is the best data type considering i want to fetch a total count of each ...
1
vote
1answer
30 views
Floyd-Warshall with negative loop in C
im working on graph searching with Floyd-Warshalls algorithm and don´t understand how to alter it to prevent negative loops.
When i enter:
From Cost To
0 -1 1
1 -2 0
I get ...
1
vote
1answer
44 views
sort negative value in Unix
I have a problem when i want to sort a file like this
ce point de l ordre du jour -0.000000004070935
au sein de la commission des libertés 0.000000004017626
du conseil de sécurité de l onu ...
0
votes
1answer
43 views
How should negative time work?
I'm trying to create a Time -class which can handle times of format hh:mm:ss.
This is what I have:
class Time(object):
def __init__(self, h=0, m=0, s=0):
#private
self.__hours = ...
0
votes
1answer
47 views
Elapsed time in Matlab in milliseconds with different dates
I want to compute the elapsed time (in milliseconds) of data like this:
START: 2013-05-04 23:13:06.188
ENDED: 2013-05-05 1:22:41.617
I can't use etime() because I need the elapsed time in ...
-4
votes
4answers
56 views
Numbers positive and negative
What am i doing wrong? I want to have a random numbers. Negative and positive integers
#include <iostream>
#include <cstdlib>
int main(){
int a;
cin<<a;
int t[a];
...
-4
votes
2answers
66 views
How do I not allow negative numbers?
public boolean add(int v)
{
if (count < list.length) // if there is still an available slot in the array
{
if (v >= minValue || v <= maxValue) // if ...
0
votes
1answer
61 views
Dijkstra algorithm - negative weights only from source
I wonder if we can use Dijkstra algorithm if the graph has some negative-weighted edges, but those start only from source. I can't find any problem with it, but also can't give a solid proof. Any ...
0
votes
1answer
35 views
ObjC unusual behavior when casting NSUInteger to double
I'm experiencing some strange behavior when I negate a NSUInteger and cast to a double.
NSUInteger test = 10;
NSLog(@"%d", test);
NSLog(@"%f", (double) test);
NSLog(@"%d", -test);
NSLog(@"%f", ...
-2
votes
1answer
40 views
If Statement? Don't add numbers into total variable if they are negative
Question, how do I make it so when an user-inputted number is negative, it isn't added to the total variable that will be ouput?
Code below!
function lab10logicInLoopsPart1()
{
lCounter = 1;
var ...
0
votes
1answer
54 views
Huffman Coding: handling negative ambiguity with zero
I've written a simple text file compressor that uses Huffman coding. I encode the text and write the binary resulting from Huffman to a file. To decode, I read in the binary and step through the ...
0
votes
2answers
49 views
Place a negative sign in value
I have a SELECT query and would like to place a negative sign in percentage value if it's less than 100. Here is my query:
SELECT produces, amount, percentage FROM inventory
I tried:
SELECT ...
0
votes
1answer
83 views
Calculate negatives in the stack calculator
Bear with me, I'm a little fried right now from getting this all together, but I'm at the final stretch. I've made a calculator in java that takes an infix equation and then changes it to postfix. It ...
1
vote
1answer
51 views
Sort negative values
I have a problem with sorting my sentence values in descending order:
I typed this command in unix:
sort fileInput -t"(" -k2r >fileSort
Here's the input file:
comité de conciliation de ...
0
votes
0answers
19 views
Why an element with a negative top value (in percent) shifts horizontally?
I found this oddity years ago, but I couldn't reproduce it because I changed so much code to make something else to work, that I got completely lost. The second time I saw this I had no time to try to ...
2
votes
2answers
58 views
is_numeric eliminating negative numbers in Ruby
I'm a new user here and also beginner with Ruby. I need to eliminate the negative values (numbers) from is_numeric?. So the code is this way:
class String
def is_number?
true if Float(self) ...
0
votes
5answers
902 views
How do you recursively count the number of negative numbers in an array (Java)?
I need to use this method:
public static int countNegative(double[] numbers, int count){ }
to count the number of negative numbers in a double array. I could easily do it if I could include a 3rd ...
4
votes
3answers
181 views
Java: right shift on negative number
I am very confused on right shift operation on negative number, here is the code.
int n = -15;
System.out.println(Integer.toBinaryString(n));
int mask = n >> 31;
...
0
votes
2answers
121 views
Unsigned long returning negative in C++
below when any of the numA-D is multiplied numerous times the number suddenly becomes a negative. For example when numA is multiplied 3 times by 256 the number then becomes negative,but not if only ...
0
votes
4answers
92 views
How to map characters to integer range [-128, 127] in Python?
I would like to convert a list of characters (represented on a single byte ie. the range [0, 255]) to be represented with integers in the range [-128,127]. I've read that Python's modulo operator (%) ...
0
votes
1answer
97 views
Rails range_field from 0 to -100
I have a range field that, when slid right, needs to make the output "more negative" up to -100.
Here's my current code:
<%= f.range_field :Question1, :in => 0..-100, :step => '.1' %>
...
2
votes
3answers
111 views
Printf comes out negative
I'm new to programming and am trying to have my program take a given number, double it, then continue to double for however many days the user input. I made this loop and it works but the final number ...
0
votes
1answer
342 views
Integer.parseInt(string, radix) in Java returns (mostly) negative decimal values
As I said above I am using Integer.parseInt to convert hex values into decimal but I keep getting returned negative integers when I put in positive hex values:
byte[] bytes2 = ...
0
votes
1answer
132 views
Java program not outputting negative integers from array?
One of my Java assignments is to take numbers from a file and then seperate them to two arrays. One named P (positive numbers) and N (negative numbers.) I have it working for the positive numbers but ...
0
votes
3answers
218 views
1's complement of positive and negative numbers
I am dealing with 1's complement concept, then in my mind here arise a doubt
17=00010001 and its 1's complement is 11101110
-17=10010001 and its 1's complement is 01101110 is this correct?
I ...
0
votes
4answers
77 views
sscanf with hexadecimal negative value
I need to convert hexadecimal 4-digits values to decimal so I used ssscanf but it is not work on negative numbers...
For example,
int test;
sscanf("0xfff6","%x",&test);
return 65526 ...
3
votes
1answer
76 views
Java - Is there a method for Euclidean or floored modulo
Java modulo operator % is based on the truncated division (see Wikipedia: Modulo operation).
5%3 produces 2 (note that 5/3 produces 1)
5%(-3) produces 2 (note that 5/(-3) produces -1)
(-5)%3 ...
0
votes
3answers
62 views
performing bit-wise AND with int and shifting
This quesstion is based on:
Shift with 64 bit int
The origin of the question is - I define an enum ,which presents different masks.
And need to make & of the variable with enum (mask) after that ...
0
votes
1answer
43 views
Ajax Post Data with negative number
i have a problem with Ajax post data with negative number
i am using this one
$.ajax({
type: "POST",
url: "?page=invresults",
data: "Bound=1",
});
it send data 1 to php ...
-1
votes
1answer
145 views
Dividing negative numbers with floordiv in python
I'm confused by the nature of integer division with // or floordiv with negative numbers in python.
>>> -5 // 2
-3
>>> int(-5/2)
-2
Why would floordiv() round down to -3? I ...
0
votes
3answers
74 views
sort array of floats with negatives
I have no idea why this is happening nor can I find a solution on google.
Here's my array of floats as a result of asort by SORT_NUMERIC:
Array ( [0] => -5.092368092812E-9 [6] => ...
0
votes
2answers
84 views
PHP Unsigned Right Shift - Malfunctioning
So, when using my method to preform a ( >>> ) unsigned right shift in PHP, the result is incorrect when the numbers involve negatives.
PHP Application Results:
INPUT: 10 >>> 3
INPUT: -10 ...
2
votes
4answers
141 views
Integer division & modulo operation with negative operands in Python
Questions arise when I type in these expressions to Python 3.3.0
-10 // 3 # -4
-10 % 3 # 2
10 // -3 # -4
10 % -3 # -2
-10 // -3 # 3
It appears as though it takes the approximate floating ...
0
votes
1answer
218 views
Java converting negative binary back to integer
I'm trying to convert an base 10 number to a base 2 and back to base 10. It works only for positive argument_decimal
argument_binary = Integer.toBinaryString(argument_decimal);
...
1
vote
4answers
136 views
Why isn't this C++ loop counting from 10 to -5? [closed]
Alright, so I'm learning C++ and one of the challenges was to make a program that counts down from 10 to -5.. it's always going from 9 to 1, and it says Done!
Please help me in any way you can, and ...
0
votes
1answer
162 views
Converting negative milliseconds into human readable format in PHP
Ok, so I have this function:
function convertTime($ms){
$sec = floor($ms/1000);
$ms = $ms % 1000;
$min = floor($sec/60);
$sec = $sec % 60;
$t = $sec;
$hr = floor($min/60);
...
0
votes
4answers
153 views
Detecting and adjusting for negative zero
I have some code that has been port from Java to C++
// since this point is a vector from (0,0,0), we can just take the
// dot product and compare
double r = point.dot(normal);
return (r>=0.0);
...
1
vote
0answers
119 views
ODP.net (negative int) primary key unique constraint (PK_X) violated
While trying to insert a record
2,'TEST'
in the following table
*CREATE TABLE X
(
ID INT NOT NULL CONSTRAINT PK_X PRIMARY KEY,
DESCRIPTION CHAR(10) NOT NULL
)
/*
which has these ...
5
votes
4answers
417 views
Regex pattern to match positive and negative number values in a String
I have pattern/matcher lines that transform input Strings like this:
1 3 Hi [2 1 4]
into an Array like this:
[0] => "1"
[1] => "3"
[2] => "Hi"
[3] => "2 1 4"
That's the code:
String ...
2
votes
2answers
247 views
How to iterate over range with negative step?
Is there a way to do something like:
0 to -10 map { i=>
...
}
repl gives me:
scala.collection.immutable.IndexedSeq[Unit] = Vector()
0
votes
2answers
1k views
vba check for negative value
I wrote a simple VBA code to check if the value of a cell is negative and if it is negative, highlight it red. For some reason, I keep getting "run-time mismatch". My code is
For x = 2 To 100
Set ...
0
votes
6answers
172 views
reading a arbitary memory location making the program crash
I am trying to read the value at random memory location using the following c code
main()
{
int a,*b;
printf("enter the value of a");
scanf("%d",&a);
b=a;
...
1
vote
4answers
685 views
create a method that can count negative numbers in an array
public class negativeTest {
public static int Negativenum (int[] array) {
int negative = 0;
for (int i = 0; i < array.length; i++){
if(array[i] < 0){
...
0
votes
4answers
276 views
Simple Javascript maths
I'm trying to work with some maths, and I can't get a negative number to act as a positive number. I have these numbers in different variables;
330 3106 -2776
I need 330, 3106 and 2776 so I can do ...
0
votes
4answers
607 views
Compute the negative numbers in an array
I was searching for solution to find negative numbers in array and i came up with something like this code from searching.
public static void main(String args[]){
int arrayNumbers[] = { 3, 4, 7, ...
0
votes
3answers
140 views
How to display the amount of negative numbers in an array?
How to display the amount of negative numbers in an array?
This is what I have so far:
public static void main(String args[]){
int arrayNumbers[] = { 3, 4, 7, -3, -2};
for (int i = 0; i ...
-1
votes
1answer
135 views
MySQL sum with negative decimals
I have a qty column in my table, and i'm trying to sum the values. The field type is varchar(20). The sum of qty below should add up to exactly 0. It's a mix of negative and positive decimals.
...
3
votes
2answers
232 views
Java Integers Min_Value negative then compare
I have a test tomorrow and I cant understand my books explanation, I appreciate the help:
public class TestClass{
public static void main(String[] args) throws Exception{
int a = ...
2
votes
3answers
455 views
How to change a negative number to zero in python without using decision structures
I have a program that determines the number of points you get per day, for 5 days from an event.
source code:
total=0
for x in range (5):
points=int(input('How many points did you get ...




