代码之家  ›  专栏  ›  技术社区  ›  Ramesh Rajendran

解释:数学。fround()函数

  •  5
  • Ramesh Rajendran  · 技术社区  · 7 年前

    Math.fround() 作用

    这个 函数返回数字的最近浮点表示形式。

    Math.fround(1.5) 但是当它被传递到浮点数时 Math.fround(1.55) 1.5499999523162841 .

    • 数学.fround()
    • Math.round() 作用
    • 另外,请告诉我为什么它在中不受支持 Internet Explorer
    2 回复  |  直到 7 年前
        1
  •  8
  •   Max Koretskyi    7 年前

    要了解此功能的工作原理,您实际上必须了解以下主题:

    the following algorithm

    拿:

    • 如果x是+0、-0、+、-之一,则返回x。
    • 使用roundTiesToEven设置格式。
    • 至IEEE 754-2008 binary64格式的值。

    那么,让我们为 1.5 1.55 .

    1) 用64位浮点表示

    0 01111111111 1000000000000000000000000000000000000000000000000000
    

    2) 用科学符号表示

    1.1000000000000000000000000000000000000000000000000000 x 2^0
    

    1.10000000000000000000000
    

    4) 转换为十进制:

    1.5
    

    数学弗劳德(1.55)

    0 01111111111 1000110011001100110011001100110011001100110011001101
    

    1.1000110011001100110011001100110011001100110011001101 x 2^0
    

    3) 舍入到23位尾数

    1.10001100110011001100110
    

    4) 转换为十进制:

    1.5499999523162841
    
        2
  •  0
  •   Ramesh Rajendran    7 年前


    我发现了一些关于 Math.fround ( x ) 从…起 ECMAScript® 2015 Language Specification

    Math.fround() 使用参数x调用。采取以下步骤:

    • 如果x是+0,0,+,则返回x。
    • 返回对应于x64的ECMAScript数值。

    Float32Array 支持:

    Math.fround = Math.fround || (function (array) {
      return function(x) {
        return array[0] = x, array[0];
      };
    })(Float32Array(1));
    

    请分享更多答案以了解更多细节