Download

From Efficient Java Matrix Library
Revision as of 04:09, 16 March 2015 by Peter (talk | contribs) (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:...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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>