All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ch.obermuhlner.math.big.internal.CoshCalculator Maven / Gradle / Ivy

There is a newer version: 2.3.2
Show newest version
package ch.obermuhlner.math.big.internal;

import java.math.BigDecimal;
import java.math.MathContext;

import ch.obermuhlner.math.big.BigRational;

/**
 * Calculates cosinus hyperbolicus using the Taylor series.
 * 
 * 

See Wikipedia: Taylor series

* *

No argument checking or optimizations are done. * This implementation is not intended to be called directly.

*/ public class CoshCalculator extends SeriesCalculator { public static final CoshCalculator INSTANCE = new CoshCalculator(); private int n = 0; private BigRational factorial2n = BigRational.ONE; private CoshCalculator() { super(true); } @Override protected BigRational getCurrentFactor() { return factorial2n.reciprocal(); } @Override protected void calculateNextFactor() { n++; factorial2n = factorial2n.multiply(2 * n - 1).multiply(2 * n); } @Override protected PowerIterator createPowerIterator(BigDecimal x, MathContext mathContext) { return new PowerTwoNIterator(x, mathContext); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy