template<typenameFunction,typenameTolerance,typenameUInt>/* the same type as Function returns */aitken(Function&& f, Tolerance&& tolerance, UInt& iteration);template<typenameFirstIterator,typenameLastIterator,typenameTolerance>/* the same type as Function returns */aitken(FirstIterator& first, LastIterator last, Tolerance&& tolerance);template<typenameFunction,typenameTolerance,typenameUInt>/* the same type as Function returns */aitken_sum(Function&& f, Tolerance&& tolerance, UInt& iteration);template<typenameFirstIterator,typenameLastIterator,typenameTolerance>/* the same type as Function returns */aitken_sum(FirstIterator& first, LastIterator last, Tolerance&& tolerance);
calculating limit of a sequence
The following functions calculates the limit of a given sequence.
template<typenameFunction,typenameTolerance,typenameUInt>/* the same type as Function returns */aitken(Function&& f, Tolerance&& tolerance, UInt& iteration);template<typenameFirstIterator,typenameLastIterator,typenameTolerance>/* the same type as Function returns */aitken(FirstIterator& first, LastIterator last, Tolerance&& tolerance);
calculating limit of sum of a sequence
The following functions automatically calculates the sum of a given sequence. The usage is the same as the functions that calculates a limit.
template<typenameFunction,typenameTolerance,typenameUInt>/* the same type as Function returns */aitken_sum(Function&& f, Tolerance&& tolerance, UInt& iteration);template<typenameFirstIterator,typenameLastIterator,typenameTolerance>/* the same type as Function returns */aitken_sum(FirstIterator& first, LastIterator last, Tolerance&& tolerance);