Tagged Questions
Zero is a unique number and along with 1 is one of the two binary numbers. Zero plays an important role in Mathematics and Computing. This Tag is for discussions of zero within various programming languages.
140
votes
4answers
3k views
Is 0 a decimal literal or an octal literal?
Zero is always zero, so it doesn't matter. But in a recent discussion with my friend he said that octal literals are almost unused today. Then it dawned upon me that actually almost all integer ...
24
votes
10answers
5k views
Fastest way to zero out a 2d array in C?
I want to repeatedly zero a large 2d array in C. This is what I do at the moment:
for(j = 0; j < n; j++)
{
for(i = 0; i < n; i++)
{
array[i][j] = 0;
}
}
I've tried using ...
19
votes
4answers
788 views
negative zero in python
[Python 3.1]
I encountered negative zero in output from python; it's created for example as follows:
k = 0.0
print(-k)
The output will be -0.0.
However, when I compare the -k to 0.0 for equality, ...
15
votes
3answers
4k views
Array of zero length
I am working on refactoring some old code and have found few structs containing zero length arrays (below). Warnings depressed by pragma, of course, but I've failed to create by "new" structures ...
14
votes
2answers
534 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 ...
14
votes
8answers
9k views
C#.NET: Is it safe to check floating point values for equality to 0?
I know you can't rely on equality between double or decimal type values normally, but I'm wondering if 0 is a special case.
While I can understand imprecisions between 0.00000000000001 and ...
11
votes
9answers
12k views
nullable types: best way to check for null or zero in c#
i'm working on a project where i find i'm checking for the following in many, many places:
if(item.Rate == 0 || item.Rate == null) { }
more as a curiousity than anything, what's the best way to ...
9
votes
3answers
326 views
C - Comparing floating point numbers
I've got a double that prints as 0.000000 and I'm trying to compare it to 0.0f, unsuccessfully. Why is there a difference here? What's the most reliable way to determine if your double is zero?
8
votes
4answers
249 views
+0 and -0 in JavaScript (negative zero and positive zero in JavaScript)
I'm reading through version 5.1 of EMCAScript definition here (see page 29). At many points, they seem to distinguish +0 and -0. However, +0 === -0 evaluates to true. Why is that, if the two are ...
8
votes
4answers
2k views
Get rid of leading zeros for date strings in Python?
Is there a nimble way to get rid of leading zeros for date strings in Python?
In the example below I'd like to get 12/1/2009 in return instead of 12/01/2009. I guess I could use regular expressions. ...
7
votes
2answers
434 views
Extract contours from ContourPlot in Mathematica
I have a function f(x,y) of two variables, of which I need to know the location of the curves at which it crosses zero. ContourPlot does that very efficiently (that is: it uses clever multi-grid ...
7
votes
4answers
6k views
Is there a difference between BigDecimal(“0”) and BigDecimal.ZERO?
Either for comparisons or initialization of a new variable, does it make a difference which one of these you use?
I know that BigDecimal.ZERO is a 1.5 feature, so that's a concern, but assuming I'm ...
6
votes
3answers
114 views
Signed zero linux vs windows
i am running a program in c++ on windows and on linux.
the output is meant to be identical.
i am trying to make sure that the only differences are real differences oppose to working inviorment ...
6
votes
2answers
107 views
Does javascript have a concept of negative zero
Consider the following
var l = console.log.bind(console);
l(-0); // 0
l(0); // 0
l(0 === -0); // true
l(0 == -0); // true
l(1 / 0); // Infinity
l(1 / -0); // -Infinity
Why is negative zero equal ...
6
votes
5answers
339 views
How to get a -0 result in floating point calculations and distinguish it from +0 in C#?
The MSDN documentation mentions that double type includes negative zero. However, both -1.0 / double.PositiveInfinity and -double.Epsilon / 2 appear to return normal 0 (and compare equal to it). How ...
6
votes
5answers
7k views
Truncate leading zeros of a string in Javascript
I have a textbox in Javascript. When I enter '0000.00' in the textbox, I want to know how to convert that to only having one leading zero, such as '0.00'.
Please anybody help me in this regard.
...
5
votes
2answers
199 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
3answers
120 views
Why does Perl think that a non-existent multi-level hash element is there?
Sorry, this seems like such a basic question but I still don't understand. If I have a hash, for example:
my %md_hash = ();
$md_hash{'top'}{'primary'}{'secondary'} = 0;
How come this is true?
if ...
5
votes
2answers
395 views
Zero division does not throw exception in nunit
Running the following C# code through NUnit yields
Test.ControllerTest.TestSanity: Expected: `<System.DivideByZeroException>` But was: null
So either no DivideByZeroException is thrown, or ...
5
votes
1answer
178 views
Why does my Perl program print the help message when an arguments has 0 as a value?
If i do this:
GetOptions(
'u=s' => \$in_username,
'r=i' => \$in_readonly,
'b=i' => \$in_backup
);
exit usage() unless $in_username && $in_readonly && ...
5
votes
4answers
7k views
What would you use to zero pad a number in Flex/AS3?
Duplicate of this one.
What would you use to pad zeroes to the left of a number in Flex/AS3?
Is there an equivalent to printf or NumberFormat that does this?
I'm looking for the nicest ...
4
votes
5answers
144 views
In C, is there a difference between a NULL pointer and a pointer that points to 0? If so, what?
In C, what is the difference between a NULL pointer and a pointer that points to 0?
4
votes
2answers
108 views
Distinguishing sign of zero : -float64(0) from float64(0) in Go
I want to serialize a floating point in such a way that sign info is not lost. Specifically, I would like to distinguish IEEE-754 negative zero from regular zero.
The language spec says
The ...
4
votes
2answers
142 views
0.5 displays as 0.5 even when I use round(0.5,2)
I have a number like 0.5, I would like to keep two digits in order to make the number 0.50. While the last digit is zero, so it always cannot appear.
I have used round(0.5,2) but it doesn't work
4
votes
2answers
144 views
“00” becomes “0” in PHP function, but it must be “00” for RGB to work. How?
this PHP RGB brightness altering function works partially:
It misses one zero "0" at the end: so it should be "00" How to solve this?
$color = "#a7a709"; // constant
$color1 = ...
4
votes
4answers
153 views
Removing the 0 value from a sorted Array?
I was wondering if there was a way to remove the default "0" value I get when I run the following code:
Scanner scan = new Scanner(System.in);
int [] x = new int[4];
for ( int i = 1; i < ...
4
votes
6answers
629 views
Windows font that clearly disambiguates the number ZERO from letter O
Our intranet web pages need to clearly disambiguate between the letter O and the number ZERO. Is there a screen+printer font that is installed on WindowsXP and Vista that does this either putting a ...
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
492 views
Initializing Primitive Array to One Value
Is there a way to initialize an array of primitives, say a integer array, to 0? Without using a for loop? Looking for concise code that doesn't involve a for loop.
:)
4
votes
2answers
875 views
Pad python floats
I want to pad some percentage values so that there are always 3 units before the decimal place. With ints I could use '%03d' - is there an equivalent for floats?
'%.3f' works for after the decimal ...
3
votes
2answers
240 views
Add leading zeroes to awk variable
I have the following awk command within a "for" loop in bash:
awk -v pdb="$pdb" 'BEGIN {file = 1; filename = pdb"_" file ".pdb"}
/ENDMDL/ {getline; file ++; filename = pdb"_" file ".pdb"}
{print $0 ...
3
votes
7answers
793 views
Removing Trailing Zeros in Python
I need to find a way to convert the following strings in python:
0.000 => 0
0 => 0
123.45000 => 123.45
0000 => 0
123.4506780 => 123.450678
and so forth. I ...
3
votes
4answers
266 views
Is there a zero [ 0 ] constant somewhere in any Microsoft .NET class?
I'm just curious and I know it's not of much value, but here it goes...
I think that I have seen something like that somewhere but I'm not sure.
I mean something like this:
var zero = Class.Zero;
...
3
votes
8answers
872 views
Can I check in C(++) if an array is all 0 (or false)?
Can I check in C(++) if an array is all 0 (or false) without iterating/looping over every single value and without allocating a new array of the same size (to use memcmp)?
I'm abusing an array of ...
3
votes
5answers
251 views
SQL LEFT JOIN with COUNT(*) problem
I have the following query:
SELECT products_categories.categoryID, name, COUNT(*) AS itemCount
FROM products_categories
LEFT JOIN products_to_categories ON products_to_categories.categoryID = ...
3
votes
7answers
312 views
3
votes
4answers
669 views
PHP: Check if 0?
I am using a class which returns me the value of a particular row and cell of an excel spreadsheet. To build up an array of one column I am counting the rows and then looping through that number with ...
3
votes
1answer
81 views
Change nil's to zeroes in elisp
I'd like to ask - what is the function doing nil conversion from nil's to zeroes in elisp?
I'm a newbie and I think I am inventing the wheel with my code:
(defun chgnull (x)
(if (null x) 0 1))
...
3
votes
3answers
926 views
How to add a trailing zero to a price with jQuery
So I have a script which returns a price for a product. However the price may or may not include trailing zeros so sometimes I might have:
258.22
and other times I might have
258.2
In the later ...
3
votes
5answers
2k views
T-SQL, zero sum for no match on join
I have two tables, one with all my Branches, and one with all my sales. The sales table also contains a Sales Rep ID, a Branch ID, a month and a year.
I need a query that will return the sum of a ...
2
votes
2answers
43 views
VBA eats my zeros INSIDE a string?
So here is a problem that I have never come across before. I Import an ISIN (for example DE0002635307) from a cell, which is defined as a text. I need to use this to reference to a cell by that name. ...
2
votes
3answers
304 views
(SAP/ABAP) Digit grouping and remove 0 (zero) in front of value
I'm still new in ABAP and I want to know how to do
1. digit Grouping
2. remove 0 in front of value
digit grouping
when I have value for money for example 3000000 ( 3million) i want to print ...
2
votes
1answer
56 views
How to make zero tablix data rows appear?
I am developing an SSRS 2008 report. I created a tablix, however, when I view this report one of the rows has zero entries. This row is not showing in the output. How can I make it show regardless ...
2
votes
1answer
76 views
PHP: Regex preg_replace_callback to match all numbers in PHP
preg_replace_callback( "/[0-9]*/", array( &$this, '_getPHPNumber' ), $code );
private function _getPHPNumber( $matches ) {
return ( $this->_getHtmlCode( $matches[0], PHP::$Colors['number'] ...
2
votes
2answers
626 views
adding leading zeros using R
I have a set of data in which looks something like this:
anim <- c(25499,25500,25501,25502,25503,25504)
sex <- c(1,2,2,1,2,1)
wt <- c(0.8,1.2,1.0,2.0,1.8,1.4)
data <- ...
2
votes
3answers
80 views
Adding zeros to a list
I am trying to find a way to make two lists the same length. How can I add zeros to one list so as to make it have the same length with the first one?
i.e. list1=[ 1 2 3 4 5]; list2=[ 1 2 3]
2
votes
2answers
183 views
Why does an EXE file that does *nothing* contain so many dummy zero bytes?
I've compiled a C file that does absolutely nothing (just a main that returns... not even a "Hello, world" gets printed), and I've compiled it with various compilers (MinGW GCC, Visual C++, Windows ...
2
votes
3answers
212 views
Why did instruments report a leak while its ref count did become zero
green hand i am. I'm using instruments, and it did a great help to me so far, but I'm confused now 'cause it report a memory leak to me while its leaked block history shows me that the ref count of ...
2
votes
4answers
313 views
SQL zero instead of null
This function:
for i in Selection:
cursor.execute(Query)
ydata[i] = [int(x[0]) for x in cursor.fetchall()]
raises:
ValueError: invalid literal for int(): NULL if a null value is found.
...
2
votes
1answer
275 views
scala new Range with step equals zero
Is(and why) this really should be prohibited with exception?
scala> val r2 = 15 until (10, 0)
java.lang.IllegalArgumentException: requirement failed
scala> new Range(10,15,0)
...