About The User Guide

This guide is intended to help programmers quickly find what they need to develop solutions using Hipparchus. It also provides a supplement to the javadoc API documentation, providing a little more explanation of the mathematical objects and functions included in the package.

What's in hipparchus

Hipparchus is made up of a small set of math/stat utilities addressing programming problems like the ones in the list below. This list is not exhaustive, it's just meant to give a feel for the kinds of things that Hipparchus provides.

  • Computing means, variances and other summary statistics for a list of numbers
  • Fitting a line to a set of data points using linear regression
  • Fitting a curve to a set of data points
  • Finding a smooth curve that passes through a collection of points (interpolation)
  • Fitting a parametric model to a set of measurements using least-squares methods
  • Estimating linear and non-linear processing using Kalman filtering
  • Solving equations involving real-valued functions (i.e. root-finding)
  • Solving systems of linear equations
  • Solving Ordinary Differential Equations
  • Minimizing multi-dimensional functions
  • Generating random numbers with more restrictions (e.g distribution, range) than what is possible using the JDK
  • Generating random samples and/or datasets that are “like” the data in an input file
  • Performing statistical significance tests
  • Miscellaneous mathematical functions such as factorials, binomial coefficients and “special functions” (e.g. gamma, beta functions)

We are actively seeking ideas for additional components that fit into the Hipparchus vision of a set of lightweight, self-contained math/stat components useful for solving common programming problems. Suggestions for new components or enhancements to existing functionality are always welcome! All feedback/suggestions for improvement should be sent to the developers mailing list.

How Hipparchus is organized

Hipparchus is divided into sixteen subpackages, based on functionality provided.

  • Computing means, variances and other summary statistics for a list of numbers
  • Fitting a line to a set of data points using linear regression
  • Fitting a curve to a set of data points
  • Finding a smooth curve that passes through a collection of points (interpolation)
  • Fitting a parametric model to a set of measurements using least-squares methods
  • Solving equations involving real-valued functions (i.e. root-finding)
  • Solving systems of linear equations
  • Solving Ordinary Differential Equations
  • Minimizing multi-dimensional functions
  • Generating random numbers with more restrictions (e.g distribution, range) than what is possible using the JDK
  • Generating random samples and/or datasets that are “like” the data in an input file
  • Performing statistical significance tests
  • Miscellaneous mathematical functions such as factorials, binomial coefficients and “special functions” (e.g. gamma, beta functions)

Package javadocs are here

How interface contracts are specified in hipparchus javadoc

You should always read the javadoc class and method comments carefully when using Hipparchus components in your programs. The javadoc provides references to the algorithms that are used, usage notes about limitations, performance, etc. as well as interface contracts. Interface contracts are specified in terms of preconditions (what has to be true in order for the method to return valid results), special values returned (e.g. Double.NaN) or exceptions that may be thrown if the preconditions are not met, and definitions for returned values/objects or state changes.

When the actual parameters provided to a method or the internal state of an object make a computation meaningless, a MathIllegalArgumentException or MathIllegalStateException may be thrown. Exact conditions under which runtime exceptions (and any other exceptions) are thrown are specified in the javadoc method comments. In some cases, to be consistent with the IEEE 754 standard for floating point arithmetic and with java.lang.Math, Hipparchus methods return Double.NaN values. Conditions under which Double.NaN or other special values are returned are fully specified in the javadoc method comments.

The policy for dealing with null references is as follows: When an argument is unexpectedly null, a NullArgumentException is raised to signal the illegal argument. Note that this class does not inherit from the standard NullPointerException but is a subclass of MathIllegalArgumentException.

Dependencies

Hipparchus requires JDK 1.8+ and has no runtime dependencies.

License

Hipparchus is distributed under the terms of the Apache License, Version 2.0

Back to top

Reflow Maven skin maintained by Olivier Lamy.