Apache Commons Math
Go to file
Luc Maisonobe 8361fd7f9c updated copyright year 2016-01-06 14:20:00 +01:00
doc/release Updated released howto after change from people to home.apache.org. 2016-01-01 20:01:32 +01:00
siteMods Add missing Apache license headers. 2012-03-05 01:02:44 +00:00
src Field-based implementation of Adams-Moulton ODE integrator. 2016-01-06 14:19:07 +01:00
.gitignore Including Ekstazi profile (www.ekstazi.org) to optimize regression tests 2014-12-16 13:37:58 +01:00
.travis.yml MATH 4 requires at least java 7, build also the MATH_3_X branch. 2015-12-02 21:08:41 +01:00
CONTRIBUTING.md Add README.md and CONTRIBUTING.md to give contributors coming from github some information on how to contribute to commons-math. 2015-01-07 09:17:33 +01:00
LICENSE.txt Simplifying again repartition between LICENSE and NOTICE files. 2014-12-22 21:35:43 +01:00
NOTICE.txt updated copyright year 2016-01-06 14:20:00 +01:00
PROPOSAL.html Fixing the mailing list addresses 2007-07-29 20:14:22 +00:00
README.md Update latest version in README. 2015-12-02 20:43:44 +01:00
RELEASE-NOTES.txt Preparing release 3.4.1. 2015-01-08 17:47:33 +01:00
build.xml Fixed ant build. 2016-01-02 10:30:49 -07:00
checkstyle.xml reintroduced modifiers needed for serialization. 2015-11-02 16:20:54 +01:00
clirr-ignored.xml Reset clirr exceptions after package change. 2015-04-11 15:51:07 +02:00
findbugs-exclude-filter.xml Avoid a false positive findbugs warning. 2015-11-03 10:45:35 +01:00
license-header.txt Fixed copyright header (committing in parts as the full commit timed out) 2006-11-29 07:06:35 +00:00
math-RC.sh Removed subversion keywords $Id$, $Revision$ and $Date$. 2014-09-22 14:02:52 +02:00
math-pre-RC.sh Removed subversion keywords $Id$, $Revision$ and $Date$. 2014-09-22 14:02:52 +02:00
pmd-ruleset.xml Set up a customized configuration for PMD. 2015-11-03 22:09:06 +01:00
pom.xml Update developer section. 2016-01-01 21:25:39 +01:00
test-jar.xml Fixed ant build. 2016-01-02 10:30:49 -07:00

README.md

Apache Commons Math

Build Status Coverage Status Maven Central License

The Apache Commons Math project is a library of lightweight, self-contained mathematics and statistics components addressing the most common practical problems not immediately available in the Java programming language or commons-lang.

Documentation

More information can be found on the homepage. The JavaDoc can be browsed. Questions related to the usage of Apache Commons Math should be posted to the user mailing list.

Where can I get the latest release?

You can download source and binaries from our download page.

Alternatively you can pull it from the central Maven repositories:

<dependency>
  <groupId>org.apache.commons</groupId>
  <artifactId>commons-math3</artifactId>
  <version>3.5</version>
</dependency>

Contributing

We accept PRs via github. The developer mailing list is the main channel of communication for contributors. There are some guidelines which will make applying PRs easier for us:

  • No tabs! Please use spaces for indentation.
  • Respect the code style.
  • Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
  • Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running mvn clean test.

If you plan to contribute on a regular basis, please consider filing a contributor license agreement. You can learn more about contributing via GitHub in our contribution guidelines.

License

Code is under the Apache Licence v2.

Donations

You like Apache Commons Math? Then donate back to the ASF to support the development.

Additional Resources