Handling a quadruple precision floating point (128-bit) number in java

后端 未结 2 1600
醉梦人生
醉梦人生 2021-01-04 19:24

I need to make use of numbers coming from another system that are 128-bit (quadruple-precision) floating point numbers in java.

Considering that there is no equivale

2条回答
  •  醉话见心
    2021-01-04 19:59

    Depending on the size of the data set BigDecimal instantiated from an imported String representation might be an easy and accurate option. I assume one can export string representations of those numbers from any programming language.

提交回复
热议问题