New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

org.hipparchus:hipparchus

Package Overview
Dependencies
Maintainers
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

org.hipparchus:hipparchus

The Hipparchus library is a library of mathematical components. It started as a fork of Apache Commons Math.

  • 3.1
  • Source
  • Maven
  • Socket score

Version published
Maintainers
6
Source

Hipparchus

License

The Hipparchus project is a library of lightweight, self-contained mathematics and statistics components addressing the most common problems not available in the Java programming language.

Documentation

More information can be found on the homepage. The JavaDoc can be browsed. Questions related to the usage of Hipparchus should be posted to the users 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 using pom.xml settings:

<project>
  <properties>
    <!-- change the Hipparchus version number to the one suiting your needs -->
    <myprojectname.hipparchus.version>3.1</myprojectname.hipparchus.version>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.hipparchus</groupId>
      <artifactId>hipparchus-core</artifactId>
      <version>${myprojectname.hipparchus.version}</version>
    </dependency>
    <dependency>
      <groupId>org.hipparchus</groupId>
      <artifactId>hipparchus-clustering</artifactId>
      <version>${myprojectname.hipparchus.version}</version>
    </dependency>
    <dependency>
      <groupId>org.hipparchus</groupId>
      <artifactId>hipparchus-fft</artifactId>
      <version>${myprojectname.hipparchus.version}</version>
    </dependency>
    <dependency>
      <groupId>org.hipparchus</groupId>
      <artifactId>hipparchus-fitting</artifactId>
      <version>${myprojectname.hipparchus.version}</version>
    </dependency>
    <dependency>
      <groupId>org.hipparchus</groupId>
      <artifactId>hipparchus-geometry</artifactId>
      <version>${myprojectname.hipparchus.version}</version>
    </dependency>
    <dependency>
      <groupId>org.hipparchus</groupId>
      <artifactId>hipparchus-ode</artifactId>
      <version>${myprojectname.hipparchus.version}</version>
    </dependency>
    <dependency>
      <groupId>org.hipparchus</groupId>
      <artifactId>hipparchus-optim</artifactId>
      <version>${myprojectname.hipparchus.version}</version>
    </dependency>
    <dependency>
      <groupId>org.hipparchus</groupId>
      <artifactId>hipparchus-stat</artifactId>
      <version>${myprojectname.hipparchus.version}</version>
    </dependency>
  </dependencies>
</project>

If your project previously depended on Apache Commons Math and you want to switch to Hipparchus, you can also add the temporary migration jar

<dependency>
  <groupId>org.hipparchus</groupId>
  <artifactId>hipparchus-migration</artifactId>
  <version>${myprojectname.hipparchus.version}</version>
</dependency>

Contributing

There are some guidelines which will make applying contributions easier for us. Please read through our contributing guidelines.

To contact us, use the shared forum where several categories are dedicated to Hipparchus.

License

Code is under the Apache Licence v2.

FAQs

Package last updated on 01 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc