Difference between revisions of "Download"
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:...") |
|||
Line 15: | Line 15: | ||
Jars of the latest stable release can be found on Source Forge using the following link: [https://sourceforge.net/projects/ejml/files/v0.26/ EJML Downloads] | Jars of the latest stable release can be found on Source Forge using the following link: [https://sourceforge.net/projects/ejml/files/v0.26/ EJML Downloads] | ||
− | == Gradle == | + | == 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: | ||
<syntaxhighlight lang="groovy"> | <syntaxhighlight lang="groovy"> | ||
− | + | compile group: 'org.ejml', name: 'all', version: '0.27-SNAPSHOT' | |
− | |||
</syntaxhighlight> | </syntaxhighlight> | ||
− | + | Maven: | |
− | |||
− | |||
− | |||
<syntaxhighlight lang="xml"> | <syntaxhighlight lang="xml"> | ||
<dependency> | <dependency> | ||
− | + | <groupId>org.ejml</groupId> | |
− | + | <artifactId>all</artifactId> | |
− | + | <version>0.27-SNAPSHOT</version> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</dependency> | </dependency> | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 07:40, 24 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 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>