我想近似这个函数的平方根。 Math.sqrt(浮点); 结果应该是另一个浮点数,该点后的小数位数最大为6或7。 使用标准Math.sqrt(float)我得到一个非常大的数字,如0.343423409554534598959,这对我来说太过分了。
答案 0 :(得分:5)
如果您只想获得更小且更易管理的数字,可以使用toFixed
方法:
var x = 0.343423409554534598959;
console.log( x.toFixed(3) )
// outputs 0.343
如果你无法想象计算整个平方根并且只是抛出精度数字,你可以使用近似方法。但要注意,过早的优化是万恶之源;并且KISS成语违背了这一点。
这是Heron的方法:
function sqrt(num) {
// Create an initial guess by simply dividing by 3.
var lastGuess, guess = num / 3;
// Loop until a good enough approximation is found.
do {
lastGuess = guess; // store the previous guess
// find a new guess by averaging the old one with
// the original number divided by the old guess.
guess = (num / guess + guess) / 2;
// Loop again if the product isn't close enough to
// the original number.
} while(Math.abs(lastGuess - guess) > 5e-15);
return guess; // return the approximate square root
};
更多信息,从this Wikipedia page实现一个。
答案 1 :(得分:0)
浏览stackoverflow我前段时间发现了这个代码,它接近于所需的精度 (这段代码不是我的,我只是^ C ^ V-ed)
function round (value, precision, mode)
{
precision |= 0; // making sure precision is integer
var m = Math.pow(10, precision);
value *= m;
var sgn = (value > 0) | - (value < 0); // sign of the number
var isHalf = value % 1 === 0.5 * sgn;
var f = Math.floor(value);
if (isHalf)
switch (mode) {
case 'PHP_ROUND_HALF_DOWN':
value = f + (sgn < 0); // rounds .5 toward zero
break;
case 'PHP_ROUND_HALF_EVEN':
value = f + (f % 2 * sgn); // rouds .5 towards the next even integer
break;
case 'PHP_ROUND_HALF_ODD':
value = f + !(f % 2); // rounds .5 towards the next odd integer
break;
default:
value = f + (sgn > 0); // rounds .5 away from zero
}
return (isHalf ? value : Math.round(value)) / m;
}
答案 2 :(得分:-1)
我们可以使用
来舍入平方根(double)Math.round(float * Math.pow(10,r)) /Math.pow(10,r);
其中,r
是我们想在点后打印的数字。
尝试这样的程序
float f = 0.123f;
double d = Math.sqrt(f);
d = (double)Math.round(d * Math.pow(10,5)) /Math.pow(10,5);
System.out.println(d);
输出:0.35071