Difference between revisions of "Download"
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
git clone https://github.com/lessthanoptimal/ejml.git | git clone https://github.com/lessthanoptimal/ejml.git | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
+ | Current status of developmental code: | ||
+ | |||
+ | [https://travis-ci.org/lessthanoptimal/ejml https://api.travis-ci.org/lessthanoptimal/ejml.png] | ||
== Download == | == Download == |
Revision as of 09:04, 31 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
Current status of developmental code:
Download
Jars of the latest stable release can be found on Source Forge using the following link: EJML Downloads
Gradle and Maven
EJML is broken up into several packages; 'core','dense64','denseC64','simple', and 'equation'. When including EJML in your project using Gradle or Maven you can reference them individually or simply reference the "all" package, which is dependent on every package.
Gradle:
compile group: 'org.ejml', name: 'all', version: '0.27-SNAPSHOT'
Maven:
<dependency>
<groupId>org.ejml</groupId>
<artifactId>all</artifactId>
<version>0.27-SNAPSHOT</version>
</dependency>