Difference between revisions of "Download"

From Efficient Java Matrix Library
Jump to navigation Jump to search
Line 17: Line 17:
 
== Download ==
 
== Download ==
  
Jars of the latest stable release can be found on Source Forge using the following link: [https://sourceforge.net/projects/ejml/files/v0.29/ 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.30/ EJML Downloads]
  
 
== Gradle and Maven ==
 
== Gradle and Maven ==
Line 25: Line 25:
 
Gradle:
 
Gradle:
 
<syntaxhighlight lang="groovy">
 
<syntaxhighlight lang="groovy">
   compile group: 'org.ejml', name: 'all', version: '0.29'
+
   compile group: 'org.ejml', name: 'all', version: '0.30'
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 33: Line 33:
 
   <groupId>org.ejml</groupId>
 
   <groupId>org.ejml</groupId>
 
   <artifactId>all</artifactId>
 
   <artifactId>all</artifactId>
   <version>0.29</version>
+
   <version>0.30</version>
 
</dependency>
 
</dependency>
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 12:20, 9 November 2016

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:

ejml.png

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 (see list below) and including each individually can be tedious. To include all the packages simply reference "main:all", as is shown below:

Gradle:

  compile group: 'org.ejml', name: 'all', version: '0.30'

Maven:

<dependency>
  <groupId>org.ejml</groupId>
  <artifactId>all</artifactId>
  <version>0.30</version>
</dependency>

Individual modules:

Module Name Description
core Contains core data structures
dense64 Algorithms for dense real 64-bit floats
denseC64 Algorithms for dense complex 64-bit floats
equation Equations interface
simple Object oriented SimpleMatrix interface