BigDecimal の問題を解決しようとしています。私のコード:
BigDecimal tweetcount = new BigDecimal(3344048);
BigDecimal emotionCountBig = new BigDecimal(855937);
BigDecimal emotionCountSentenceBig = new BigDecimal(84988);
MathContext mc = new MathContext(64);
PMI[cnt] = (emotionCountSentenceBig.divide((tweetcount.multiply(emotionCountBig,mc)),RoundingMode.HALF_UP));
私がやりたいことは次のとおりです。emotionCountSentenceBig/(emotionCountBig*tweetcount)
(値は大きくなる可能性があります)
これを試してみるとゼロになりますが、これは不可能です。助けはありますか?