在使用 mathjs 的函数中,希望结果显示为 1000000000000000000000000000 而不是 1e+27。
我尝试了 math.format() 函数,但没有用。
> x = 1e+27
< 1e+27
> math.format(x, {notation: 'fixed'})
< "1e+27"
> math.format(x, {notation: 'auto', exponential: {lower: 1e-100, upper: 1e+100}})
< "1e+27"