Infinity is a specific floating point value that is always larger than any other floating point value. It may arise as a result of division by zero, arithmetic overflow and other exceptional operations. Infinity is different from the maximal still valid floating point value that the certain data ...

learn more… | top users | synonyms

2
votes
2answers
94 views

Why is `1.0 / 0` used instead of `Float::INFINITY`? [closed]

I read code of the gem rom, particularly its submodule rom-relation writen by known good ruby developers. In rom-relation/lib/rom-relation.rb, we can read: #Represent a positive, infinitely large ...
0
votes
0answers
33 views

Using MATLAB calculating infinite integration

I work with symbolic toolbox, and here is my code: syms x h g=(1-x).*(1-x+h); int(g,-inf,inf) and the result is : ans = piecewise([h in R_, Inf], [0 < sign(Im(h)) and h in R_, Inf + i*Inf], ...
0
votes
1answer
38 views

Check items in multidimensionaly array in Python

I have a dynamic multidimensional array, that can have a different number of columns each time. The user is asked to select which columns to extract from a file with N-columns, and based on this ...
2
votes
3answers
50 views

JSON.stringify converting Infinity to null

I have JavaScript Object say: var a = {b: Infinity, c: 10}; When I do var b = JSON.stringify(a); it returns the following b = "{"b":null, "c":10}"; How is the JSON.stringify converts the ...
0
votes
1answer
77 views

implementation of isnan() function

I am a beginner to c++ programming and I am given a task of implementation of fixed point math arithmetic in c++. here I am trying to implementation a function isnan() which returns true if the ...
-2
votes
1answer
58 views

Why is there an Infinity keyword in Javascript?

What is the Infinity keyword used for as a command (rather than a result) For example, this works, but the result isn't as expected alert(isOdd(Infinity)); function isOdd(num) { return num%2==1; } ...
2
votes
2answers
123 views

positive and negative infinity for integral types in c++

I am reading about positive and negative infinity in c++. I read that integral types dont have a infinite value ie. std::numeric_limits<int>::infinity(); wont work, but ...
-2
votes
3answers
161 views

What is the `norm` in matlab? [closed]

I came to the norm function in Matlab, and checked its documentation, but it wasn't clear to me. Can you just clarify what it exactly does? Moreover, when selecting inf, which, based on the ...
1
vote
1answer
37 views

JS - Turn Infinity Result into 0 [duplicate]

I have a series of JS calculations that show Infinity depending on user choices. How does one stop the value Infinity appearing and, for example, show 0.0 instead?
0
votes
0answers
47 views

Getting Infinity Scroll? [closed]

Go to http://www.infinite-scroll.com/. I need this for one of my websites, but I don't have a Wordpress website. Could you please tell me exactly what to do, so I can get this infinity scroll to load ...
1
vote
0answers
44 views

UIScrollView like Stocks-Widget

I did some research and I did find some things but they're not really what I'm looking for. I want to make an UIScrollView that looks, feels and works exact as the stocks widget from Apple in the ...
1
vote
1answer
60 views

NULL vs. `infinity` in PostgreSQL range types

What is the meaning of 'infinity' in PostgreSQL range types? Is there any difference between specifying infinity or -infinity as a bound, or NULL? I.e. is infinity an explicit form of specifying that ...
1
vote
1answer
62 views

Using ∞ instead of “infinity” in toString()

How can I make Java use the ∞ symbol instead of "infinity" when printing double values and toString()'ing Doubles (Or floats of course)?
0
votes
0answers
44 views

Dividing by 0 c++, double to string conversion

This is a section of code from my main, its uses a dynamic array to obtain values and the bubble sorts them. The problem i am having is when it comes to entering infinity,-infinity and NAN's. I wish ...
0
votes
1answer
52 views

multiplying large matrix elements results in infinite

I am supposed to combine all the matrix into one, which concatenate horizontally by matrix = [matrix1 matrix2 matrix3]; now i have to find the mean of the matrix which is 32 x 2039 dimensions. i ...
0
votes
2answers
70 views

What is the difference between IND and NAN numbers

A NAN value means Not A Number and IND value means Indeterminate number. But what is the difference between these two. How can we represent both in c++.
0
votes
1answer
49 views

PHP check infinity inside switch

The following code: switch ($value) { case INF: $x = 'INF'; break; case -INF: $x = '-INF'; break; case NAN: $x = 'NaN'; break; default: break; } doesn't work ...
1
vote
4answers
146 views

When to use NaN or +/-Infinity?

What are the benefits of NaN, PositiveInfinity or NegativeInfinity for float and double? When to use or avoid them? If there are constants like these why float.Parse("a") throw error rather than ...
-2
votes
2answers
68 views

jQuery loop highlight?

Is there any way to make a perpetual highlight? $('#layer').effect("highlight", {color: 'purple'}, 500); but do so infinitely and not only once. Please suggest.
3
votes
2answers
115 views

Javascript Infinity— (infinity minus minus) yields Infinity

I am looking at JavaScript's number type system. I'm using Chrome, When I evaluate 15-- for a number literal I get a ReferenceError since it makes no sense to decrement a constant. When I evaluate ...
3
votes
1answer
139 views

Make a div stretch left to infinity

I am looking to have <h2> tags stretch the background to the left of the browser window but don't seem to be able to. Can anyone help? Jsfiddle here: jsfiddle.net/4fm8x/20 The wrapper div is ...
2
votes
2answers
246 views

CompareTo behaviour for double.NaN and double.NegativeInfinity

I was doing some statistical operations in C# (.Net 4) with double[] then i found some strange behavior with CompareTo method and double.NaN. when I try this code: ...
0
votes
1answer
209 views

FLASH_MODE_TORCH working/not working

I wanted to build a flashlight app using the following code. It's working on a friend's HTC Desire HD, but it isn't on my RAZR and a friend's Galaxy Nexus. I also tried the solution with ...
6
votes
1answer
707 views

Infinity symbol does not show in Matlab plot

I'm trying to include the infinity symbol ∞ in my axis label (e.g. the expression δ∞), so I typed \delta_{\infty}. However, I only see the delta symbol δ but the infinity symbol is portrayed as a ...
0
votes
4answers
189 views

Print numbers from 1 to x where x is infinity in python [duplicate]

Possible Duplicate: Python Infinity - Any caveats? python unbounded xrange() I have a question regarding Python where you code a simple script that prints a sequence of numbers from 1 to ...
1
vote
2answers
99 views

How can I find the smallest value in a matrix that is greater than -Inf with R?

I have a matrix of values some of which are -Inf. How can I find the smallest value that is greater than -Inf?
2
votes
2answers
117 views

Meteor template reload infinity

I have a problem when running with Meteor. I have a "question" page which I want to increase the count view whenever it is rendered. So in my template function I write ...
13
votes
2answers
239 views

Is there an inf constant in Perl?

I'm initialising a list with infinities for an algorithm. Writing $x = 9**9**9 feels unintuitive, and also, I might want to use BigInt in the future. 1/0 throws an error. What's the canonical way to ...
7
votes
3answers
603 views

PHP: How to encode infinity or NaN numbers to JSON?

Apparently, infinity and NaN are not a part of JSON specification, so this PHP code: $numbers = array(); $numbers ['positive_infinity'] = +INF; $numbers ['negative_infinity'] = -INF; $numbers ...
2
votes
3answers
790 views

What are the INFINITY constants in Java, really?

I just recently ran across the constants in the primitive type wrapper classes like Double.POSITIVE_INFINITY and Double.NEGATIVE_INFINITY. In the API, it defines the first as: A constant holding ...
6
votes
6answers
7k views

How to implement infinity in Java?

Does java have anything to represent infinity for every numerical data type? How is it implemented such that I can do mathematical operations to it? E.g. int myInf = infinity; //However it is done ...
2
votes
1answer
112 views

Mathematica: Redefine multiplication so that 0*(-Inf) = 0

In my Mathematica program, I do some entropy calculations and I want to use this convention: Log[0]*0 = 0. Is there a clean way to do it or I have to write my own function? Inspired by ...
2
votes
1answer
767 views

How to loop a Coldfusion cfquery in Cfscript?

I'm trying to loop a query in cfscript. I think I have it, but it the query loops into infinity. Can someone tell me what is wrong in the following: <cfscript> // loop single msg ...
-1
votes
3answers
178 views

Javascript Infinity Object

I'm caclulating the mean value of a function's request/sec, appearently the result number sometimes is too long so it displays as Infinity, is there a way to round it so it show a number only? Or make ...
0
votes
1answer
81 views
0
votes
1answer
87 views

Intersection of a line with the infinity plane

I would like to compute the intersection of a 3D line with the plane at infinity. I suspect it would be the same as taking the 3D direction of the line and setting the 4th vector coordinate to 0. ...
0
votes
3answers
133 views

Attempting to find closest number in array results in -Infinity JavaScript

I am trying to find the number that is the closest to another (the user's browser height) in an array and h is randomly -Infinity. Here is my code. function match_height() { var heights = [11, ...
0
votes
0answers
315 views

Next page won't loading infinity scroll with Masonry

I want a complete example for infinity scroll with Masonry; I use http://www.jquery4u.com/demos/infinite-scrolling-demo1/ but the next page won't load, and also the image of the loading won't show. ...
0
votes
0answers
129 views

python modulo infinity

I have a code including modulo operation which involves infinity, e.g. a%numpy.inf. What i expected was to get zero, the code worked fine on my old computer. However, I installed python, numpy now ...
0
votes
3answers
725 views

C# converting to double returns infinity

I have a method: public void StoreNumberInSmallestType(ValueType number) { if (numberTypes == null) numberTypes = new List<Type>() { typeof(sbyte), typeof(short), typeof(int), ...
0
votes
0answers
78 views

How to use infinities with BC Math in php?

I cannot find how to use infinities with BC Math. Let's take something like: $result = echo bcdiv("1", $divider); It goes all well until $divider is 0. So you make an exception: if ...
1
vote
1answer
63 views

Infinity in JFreeChart

I have found this link: http://www.jfree.org/forum/viewtopic.php?f=3&t=6314 Its back in 2007 where they agree that infinity should be supported in JFreeChart. Anyone know if it is supported or ...
9
votes
2answers
255 views

Adding to Number.MAX_VALUE

The answer to this question may be painfully obvious but I can't find it in the Mozilla docs nor on Google from a cursory search. If you have some code like this Number.MAX_VALUE + 1; // Infinity, ...
1
vote
1answer
226 views

IEEE 754 Rounding to Positive Infinity

I'm having a difficult time understanding IEEE 754 Rounding conventions: Round to positive Infinity Round to negative Infinity Unbiased to the nearest even If I have a binary number composed of 9 ...
13
votes
3answers
430 views

Creating complex infinity with std::complex<T> in C++

I'm trying to create a complex infinity equal to Inf+Inf*j where j is the complex variable. When I do this : #include <complex> #include <limits> using std; ... complex<double> ...
1
vote
1answer
118 views

C++ - Vector initialization failing

I'm attempting to initialize a multi-dimensional vector with: vector<double> v0(point_list.size(), numeric_limits<double>::max); vector<vector<double> > ...
0
votes
1answer
137 views

Floating point number representations

I am trying to understand floating point representations. I do not understand 'infinity' 'NaN' representations in floating point. I am looking at the table here Infinity is represented as Exponent - ...
4
votes
1answer
893 views

Storing Java Double Infinity and NaN values to MS SQL 2008 database

In our business logic we have to handle positive and negative Double.Infinity values as well as Double.NaN values. We have to store these values into Microsot SQL Server 2008 database. The problem ...
0
votes
1answer
402 views

glsl infinity constant

Does GLSL have any pre-defined constants for +/-infinity or NaN? I'm doing this as a workaround but I wonder if there is a cleaner way: // GLSL FRAGMENT SHADER #version 410 <snip> const float ...
0
votes
0answers
171 views

mkl random number generator and FLT_MAX

I am using quasi random number generator from mkl Intel. I created my own wrappnig method to allow for definition of maximum and minimum bounds for rng. However, seems not to work when values for ...

1 2 3