• JackbyDev
    link
    English
    110 months ago

    What you’re talking about isn’t floating point, it’s fixed point.

    • @[email protected]
      link
      fedilink
      110 months ago

      Wrong. Sounds like you think only fixed point/precision could be implemented in decimal. There’s nothing about floating point that would make it impossible to implement in decimal. In fact, it’s a common form of floating point. See C# “decimal” type docs.

      The beginning of the Wikipedia article on floating point also says this: “In practice, most floating-point systems use base two, though base ten (decimal floating point) is also common.” (https://en.m.wikipedia.org/wiki/Floating-point_arithmetic) Also check this out: https://en.m.wikipedia.org/wiki/Decimal_floating_point

      Everything in my comment applies to floating point. Not fixed point.

      • JackbyDev
        link
        English
        110 months ago

        I generally interpret “decimal” to mean “real numbers” in the context of computer science rather than “base 10 numbers”. But yes, of course you can implement floating point in base 10, that’s what scientific notation is!