[
https://issues.apache.org/jira/browse/MATH-1354?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15222506#comment-15222506
]
Gilles commented on MATH-1354:
------------------------------
Would you provide patches (code and unit tests) for the development version (in
"git" branch "develop")?
> Easy conversion from BigDecimal to BigFraction
> ----------------------------------------------
>
> Key: MATH-1354
> URL: https://issues.apache.org/jira/browse/MATH-1354
> Project: Commons Math
> Issue Type: Wish
> Reporter: Dobes Vandermeer
>
> Users of BigFraction might also be working with BigDecimal. Here's a simple
> way to convert BigDecimal to BigFraction:
> {code}
> public static BigFraction bigDecimalToBigFraction(BigDecimal bd) {
> int scale = bd.scale();
> // If scale >= 0 then the value is bd.unscaledValue() / 10^scale
> if(scale >= 0)
> return new BigFraction(bd.unscaledValue(),
> BigInteger.TEN.pow(scale));
> // If scale < 0 then the value is bd.unscaledValue() * 10^-scale
> return new
> BigFraction(bd.unscaledValue().multiply(BigInteger.TEN.pow(-scale)));
> }
> {code}
> It might be nice to have this incorporated into the BigFraction class as a
> constructor.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)