erlang:float_to_binary/2
把一个浮点数转为二进制数据
用法:
float_to_binary(Float, Options) -> binary()
返回一个浮点数的指定小数点位数格式的二进制形式,参数 Options 的参数规则用法跟 erlang:float_to_list/2 一样。
指定小数点位数是 4 位,不够则补 0:
float_to_binary(3.14, [{decimals, 4}]).
指定小数点位数是 4 位,末尾为 0 会被截除:
float_to_binary(3.14, [{decimals, 4}, compact]).
指定小数点位数是 4 位,多余位数则四舍五入截取:
Pi = math:pi(), float_to_binary(Pi, [{decimals, 4}, compact]).
用 20 位科学计数法来格式小数数字的精度:
Pi = math:pi(), erlang:float_to_binary(Pi, [{scientific, 20}]).