About 10,500,000 results
Open links in new tab
  1. python - How to check for NaN values - Stack Overflow

    float('nan') represents NaN (not a number). But how do I check for it?

  2. java - What is the difference between the float and integer data …

    Jan 26, 2011 · float stores floating-point values, that is, values that have potential decimal places int only stores integral values, that is, whole numbers So while both are 32 bits wide, their use …

  3. floating point - What range of numbers can be ... - Stack Overflow

    For a given IEEE-754 floating point number X, if 2^E <= abs(X) < 2^(E+1) then the distance from X to the next largest representable floating point number (epsilon) is: epsilon = 2^(E-52) % For …

  4. Should I use double or float? - Stack Overflow

    Jul 2, 2009 · 1 The main difference between float and double is precision. Wikipedia has more info about Single precision (float) and Double precision.

  5. Difference between numeric, float and decimal in SQL Server

    Jun 29, 2009 · What are the differences between numeric, float and decimal datatypes and which should be used in which situations? For any kind of financial transaction (e.g. for salary field), …

  6. What is the inclusive range of float and double in Java?

    Nov 5, 2013 · What is the inclusive range of float and double in Java? Why are you not recommended to use float or double for anything where precision is critical?

  7. what's the largest number float type can hold? - Stack Overflow

    Feb 14, 2020 · I'm new to programming and have recently come up with this simple question . float type has 32 bits in which 8 bits are for the whole number part (the mantissa). so my …

  8. Difference between decimal, float and double in .NET?

    Mar 6, 2009 · What is the difference between decimal, float and double in .NET? When would someone use one of these?

  9. The real difference between float32 and float64 - Stack Overflow

    Jul 30, 2023 · I want to understand the actual difference between float16 and float32 in terms of the result precision. For instance, NumPy allows you to choose the range of the datatype you …

  10. How to use % operator for float values in c - Stack Overflow

    Sep 21, 2011 · How to use % operator for float values in c Asked 13 years, 9 months ago Modified 7 years, 8 months ago Viewed 72k times