本文整理汇总了Java中java.math.BigDecimal.round方法的典型用法代码示例。如果您正苦于以下问题:Java BigDecimal.round方法的具体用法?Java BigDecimal.round怎么用?Java BigDecimal.round使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.math.BigDecimal
的用法示例。
在下文中一共展示了BigDecimal.round方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: nRoot
import java.math.BigDecimal; //导入方法依赖的package包/类
/**
* Returns the Nth root implemented by the formula from <a href="https://en.wikipedia.org/wiki/Nth_root"> wikipedia</a>.
*
* @author AdamKuba
* @param n degree
* @param a radicand
* @return nth root of the radicand
*/
public static BigDecimal nRoot(BigInteger n, BigDecimal a) {
boolean signed = false;
if (n.doubleValue()<0){
n = n.negate();
signed = true;
}
if(signed && a.doubleValue()<0){
return new BigDecimal("-1");
}
double p = 0.00000000001;
BigDecimal prev=a;
BigDecimal next=a.divide(new BigDecimal(n),15, RoundingMode.HALF_UP);
while(abs(prev.subtract(next)).doubleValue()>p){
prev = next;
next = (new BigDecimal(n.subtract(new BigInteger("1"))).multiply(prev).add(a.divide(exp(n.subtract(new BigInteger("1")),prev),15, RoundingMode.HALF_UP))).divide(new BigDecimal(n),15, RoundingMode.HALF_UP);
}
if (signed) next = new BigDecimal("1").divide(next,15, RoundingMode.HALF_UP);
next = next.round(new MathContext(10));
return next;
}