Difference between revisions of "Download"

From Efficient Java Matrix Library
Jump to navigation Jump to search
(Created page with "== Source Code == Source code is hosted on Github. There you can access the absolute bleeding edge code. Most of the time it is in an usable state, but not always! [https:...")
(No difference)

Revision as of 04:09, 16 March 2015

Source Code

Source code is hosted on Github. There you can access the absolute bleeding edge code. Most of the time it is in an usable state, but not always!

https://github.com/lessthanoptimal/ejml

The command to clone it is:

git clone https://github.com/lessthanoptimal/ejml.git

Download

Jars of the latest stable release can be found on Source Forge using the following link: EJML Downloads

Gradle

Add the following to include it in your Gradle project. Got to love how brief it is compared to Maven.

['core','dense64','denseC64','simple','equation'].each { String a ->
        compile group: 'org.ejml', name: a, version: '0.27-SNAPSHOT'}

Maven

To include the latest stable code in your Maven project add the following to you dependency list.

<dependency>
   <groupId>org.ejml</groupId>
   <artifactId>core</artifactId>
   <version>0.27-SNAPSHOT</version>
</dependency>

<dependency>
   <groupId>org.ejml</groupId>
   <artifactId>dense64</artifactId>
   <version>0.27-SNAPSHOT</version>
</dependency>

<dependency>
   <groupId>org.ejml</groupId>
   <artifactId>denseC64</artifactId>
   <version>0.27-SNAPSHOT</version>
</dependency>

<dependency>
   <groupId>org.ejml</groupId>
   <artifactId>simple</artifactId>
   <version>0.27-SNAPSHOT</version>
</dependency>

<dependency>
   <groupId>org.ejml</groupId>
   <artifactId>equation</artifactId>
   <version>0.27-SNAPSHOT</version>
</dependency>