Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
2answers
635 views

Why is ( Infinity | 0 ) === 0?

I'm fiddling around with bitwise operators in JavaScript and there is one thing I find remarkable. The bitwise or operator returns 1 as output bit if one of the two input bits are 1. So doing x | 0 ...
17
votes
21answers
7k views

When would you use Infinity?

So in Ruby there is a trick to specify infinity: 1.0/0 => Infinity I believe in Python you can do something like this float('inf') These are just examples though, I'm sure most languages have ...
12
votes
1answer
307 views

What is the best way to check for infinity in a Perl module?

In one of my modules, I have to deal with the concept of infinity. To date, I have been using 9**9**9 as positive infinity, and this seems to work well, is fast, and seems to be what perl's internals ...
10
votes
2answers
270 views

Non-integer inhabitants of integers in Haskell

Peano natural numbers in Haskell defined as data Peano = Zero | Succ Peano are quite strange beasts: besides plain naturals and bottom values, there is an "infinite integer" inf = Succ inf among them. ...
10
votes
3answers
3k views

How do I create or test for NaN or infinity in Perl?

How do I create or test for NaN or infinite values in Perl?
10
votes
9answers
1k views

Multiple levels of infinity [closed]

Some programmers don't see much relevance in theoretical CS classes (especially my students). Here is something I find very relevant. Let me build it up in pieces for those that haven't seen it ...
9
votes
2answers
531 views

How to generate NaN, -Infinity and +Infinity in ANSI C?

I use ANSI C89 (not C++), and I want to generate NaN, -Infinity and +Infinity numbers. Is there any standard way (eg. standard macro)? Or is there any platform and compiler independent way to ...
8
votes
4answers
381 views

Setting an int to Infinity in C++

I have an int a that needs to be equal to "infinity". This means that if int b = anyValue; a>b is always true. Is there any feature of C++ that could make this possible?
8
votes
6answers
1k views

In Haskell, is there (Num a) => infinity :: a?

I'm trying to implement a data structure where if I had the use of infinity for numerical comparison purposes, it would simply things greatly. Note this isn't maxBound/minBound, because a value can be ...
7
votes
2answers
153 views

Python integer infinity for slicing

I have defined a slicing parameter in a config file: max_items = 10 My class slices a list according to this parameter: items=l[:config.max_itmes] When max_items = 0, I want all items to be ...
6
votes
4answers
178 views

O-notation, O(∞) = O(1)?

So a quick thought; Could one argue that O(∞) is actually O(1)? I mean it isn't depend on input size? So in some way its, constant, even though it infinity. Or is the only 'correct' way to express ...
5
votes
4answers
286 views

Why does the use of integer variables throw an exception?

I have come across with the following two codes. Why does it not throw an exception for floating point where as in other case it will throw a runtime exception. class FloatingPoint { public ...
5
votes
7answers
1k views

Infinity symbol with html

How can I display an infinity symbol using html?
5
votes
1answer
308 views

Infinity generated in python code

I'm looking over some complex Python 2.6 code which is occasionally resulting in an infinity being generated (at least an Infinity being serialized by the json library -- which checks w/ math.isinf). ...
4
votes
2answers
246 views

Storing Double.POSITIVE_INFINITY in MySQL (EJB entity/JBoss)

I have the following simple JPA entity: @Entity @Table( name = myentity_table ) public class MyEntity { private double a; private double b; //(...) } a and b may be set to ...
4
votes
1answer
155 views

Is there an implementation of _rational_ interval arithmetic in Python?

Is there an implementation of rational interval arithmetic in Python? This uses floats, not rationals. If not, is there any implementation of rationals in Python that includes ±∞ ?
4
votes
2answers
220 views

When do we need to use float.PositiveInfinity and float.NegativeInfinity?

When do we need to use the Infinity values, kindly add a real-world sample if available.
4
votes
5answers
754 views

Infinity in MSVC++

I'm using MSVC++, and I want to use the special value INFINITY in my code. What's the byte pattern or constant to use in MSVC++ for infinity? Why does 1.0f/0.0f appear to have the value 0? #include ...
3
votes
1answer
70 views

Is there a way to programmatically set the camera focus of an iOS device to infinity?

I am creating an app that locks the camera focus for video recording purposes. I would like to lock the focus to infinity without having the user manually adjust the focus. Is this possible? Thanks!
3
votes
4answers
141 views

Why is Infinity / Infinity not 1?

If Infinity === Infinity >> true and typeOf Infinity >> "number" then why is Infinity / Infinity >>NaN and not 1?
3
votes
1answer
766 views

Javascript - Infinity issue - how to check for it

I have a series of Javascript calculations that (only under IE) show Infinity depending on user choices. How does one stop the word 'Infinity' appearing and for example, show '0.0' instead? Thanks, ...
3
votes
1answer
331 views

Infinity Loop and user input as the termination

I have my code and it does go run to infinity. What I want is that if on the unix command window if the user inputs a ctrl C, I want the program to finish the current loop it in and then come out of ...
3
votes
2answers
542 views

How do I check scalar for an 'inf' value in Perl? [closed]

Possible Duplicate: How do I create or test for NaN or infinity in Perl? How can I check, if scalar holds inf value? I check NaN as $scalar != $scalar, what to do with inf? $scalar == inf ...
3
votes
2answers
418 views

How to put infinity and minus infinity in Django FloatField?

I am trying to put infinity in a FloatField, but that doesn't seem to work. How do I solve this? f = DjangoModel(float_value=float('inf')) #ok f.save() #crashes Results in: Traceback (most recent ...
3
votes
10answers
1k views

Java Generics and Infinity (Comparable)

With the type Integer you can do this: int lowest = Integer.MIN_VALUE; What can I do if I use generics? K lowest = <...>; I need this in order to implement something similar to a ...
2
votes
2answers
42 views

Inf value after incrementation

Here's my code: x=0; for i=1:100 x=x+sqrt(((1/((((2*i)-2)^2)*(((2*i)+2)^2)))*16)+8); end For some reason I keep getting the infinity value (inf) for x after this operation??? Can someone ...
2
votes
3answers
134 views

Magnitude to Decibel always returns NaN in C#

So my question has changed from returning Infinity to returning NaN. If your FFT is always returning Infinity this may help (http://gerrybeauregard.wordpress.com/2011/04/01/an-fft-in-c/#comment-196). ...
2
votes
4answers
229 views

Haskell - Prime Powers Excercise - Infinite merges

At university my task is the following : define the following function: primepowers :: Integer -> [Integer] that calculates the infinite list of the first n powers of the prime numbers ...
2
votes
1answer
63 views

How do you handle Infinity in JSON generated in .NET

The .NET Json serializer serializes Double.PositiveInfinity and the like to things like Infinity, which aren't valid JSON. I'm now trying to use Json.NET to serialize an object to JSON, but I'd like ...
2
votes
1answer
60 views

How to express Infinity in C in a ruby extension

I want to do the equivalent of ::Infinity= 1.0/0 in a ruby extension which is written in C. So far I have come up with rb_const_set(rb_mKernel, rb_intern("Infinity"), rb_float_new(1.0/0)); ...
2
votes
2answers
109 views

GHC 7.0.3 denies to show 2^1000 as a normalized double - outputs “infinity”

I have the following output - and I am surprised. Any help why "my Doubles" seem to be so low? Prelude GHC.Float> floatRange (0.5e1000::Double) (-1021,1024) Prelude ...
2
votes
3answers
122 views

How to perform loan equations in Java?

all. I'm trying to make a program that will allow the user to determine different aspects when considering a loan. The first equation is supposed to determine what the monthly payment would be given ...
2
votes
2answers
170 views

Are C++ floats guaranteed to have infinity?

In standards compliant C++, is the following guaranteed to be true? #include <limits> std::numeric_limits<float>::has_infinity
2
votes
1answer
134 views

how can we compare whether the result of an arithmetic operation is NaN or infinity..?

double SampleInterval = (PopulationValue - valueOfSignItems) / (SampleSize - noOfSignItems); if my divisor = 0, sampleInterval wil bcom infinity and it will be = NaN if both dividend and divisor are ...
2
votes
2answers
554 views

C++ double division by 0.0 versus DBL_MIN

When finding the inverse square root of a double, is it better to clamp invalid non-positive inputs at 0.0 or MIN_DBL? (In my example below double b may end up being negative due to floating point ...
2
votes
2answers
684 views

F-Sharp (F#) untyped infinity

I wonder why F-Sharp doesn't support infinity. This would work in Ruby (but not in f#): let numbers n = [1 .. 1/0] |> Seq.take(n) -> System.DivideByZeroException: Attempted to divide by zero. ...
2
votes
5answers
1k views

What do these three special floating-point values mean: positive infinity, negative infinity, NaN?

How can we use them in our codes, and what will cause NaN(not a number)?
2
votes
3answers
940 views

How do you get VB6 to initialize doubles with +infinity, -infinity and NaN?

VB6 doesn't appear to make it that easy to store +infinity, -infinity and NaN into double vars. It would help if it could so that I could do comparisons with those values in the context of complex ...
2
votes
1answer
406 views

Infinity, ActiveRecord and MySQL: storage and comparison

I have user input strings specifying the cost of an event (eg: "$4 for non-members"). I am trying to parse out the upper (and lower) bound of the cost (in the example, upper == lower == 4.00). ...
1
vote
1answer
22 views

Do a 'svn update --set-depth=infinity' with pysvn

I have a python script which does a partial checkout. At some point I want to do an reintegration. Before that I have to checkout the complete directory tree. My working copy contains the root which ...
1
vote
2answers
112 views

infinity and nan values

I use gcc-mingw,4.5.2 on Winows 7. printf of infinity and nan values causes 1.#INF00 and -1.#IND00 to appear in the screen ,instead of infinity && nan what could be a solution for this ...
1
vote
1answer
216 views

Set a Currency value to NAN, INF or -INF?

i want to test some code to make sure it handles NAN, INF and -INF inputs properly. i know there exists functions that return NAN, INF and -INF, but as a Double: unit IEEE754; ... function NAN: ...
1
vote
3answers
101 views

php my infinity loop stop between 630 to 660 seconds

i wrote a site crawler and i use while loop to crawl whole web site but my loop stop after about 660 seconds . i set set_time_limit ( 0 ) and use flush to echo output and i use sleep function,i ...
1
vote
3answers
283 views

Why does assertAlmostEqual(-inf,-inf) fail?

Numpy's log method gives -inf for log(0). This value is comparable: >>> np.log(0) == np.log(0) True Now in unittesting the following works fine: self.assertEqual(np.log(0),np.log(0)) ...
1
vote
4answers
474 views

C and Infinity Size Variable

How variable beyond "unsigned long long" size is represented in C or any programming language. Is there are variable type to represent Infinity?
1
vote
4answers
708 views

Backporting float(“inf”) to Python 2.4 and 2.5

I'm backporting my project from Python 2.6 to Python 2.4 and 2.5. In my project I used float("inf"), and now I find it is unavailable on Python 2.5. Is there a backport of it?
1
vote
4answers
146 views

Is there any situation in which it would be useful or necessary to “double link” header files? (C++)

I use the term "double link" because I don't know what the actual phrase is, or if there is one, but assuming you have two headers, head1.h and head2.h, with these contents: In head1.h: ...
1
vote
3answers
1k views

What's the recommended workaround if numeric_limits<double>::has_infinity is false?

I need to check a double value for infinity in a C++ app on Linux. On most platforms this works by comparing with std::numeric_limits<double>::infinity(). However, on some old platforms (RedHat ...
0
votes
1answer
48 views

UPDATE nvarchar results in Infinity or other unsuspected value

While running simple update query on a table where all updated fields are nvarchar(50) I noticed strange behavior. From time to time (what is the first strange thing) instead of getting values ...
0
votes
1answer
94 views

print the infinite value

In my program some computation could generate 1.#INF00 or -1.#IND00 results I want to print these results - but not as 1.#INF00 and -1.#IND00 .For example for 1.#INF00 , I want to print "infinity" ...

1 2