Difference between revisions of "Download"

From Efficient Java Matrix Library
Jump to navigation Jump to search
 
(7 intermediate revisions by the same user not shown)
Line 13: Line 13:
 
Current status of developmental code:
 
Current status of developmental code:
  
[https://travis-ci.org/lessthanoptimal/ejml https://api.travis-ci.org/lessthanoptimal/ejml.png]
+
[https://github.com/lessthanoptimal/ejml/actions/workflows/gradle.yml https://github.com/lessthanoptimal/ejml/actions/workflows/gradle.yml/badge.svg]
  
 
== 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.37.1/ 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.43/ 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: 'ejml-all', version: '0.37.1'
+
   compile group: 'org.ejml', name: 'ejml-all', version: '0.43'
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 33: Line 33:
 
   <groupId>org.ejml</groupId>
 
   <groupId>org.ejml</groupId>
 
   <artifactId>ejml-all</artifactId>
 
   <artifactId>ejml-all</artifactId>
   <version>0.37.1</version>
+
   <version>0.43</version>
 
</dependency>
 
</dependency>
 
</syntaxhighlight>
 
</syntaxhighlight>
Line 55: Line 55:
 
|-
 
|-
 
| ejml-dsparse    || Sparse Real Double Matrices
 
| ejml-dsparse    || Sparse Real Double Matrices
 +
|-
 +
| ejml-fsparse    || Sparse Real Float Matrices
 
|}
 
|}

Latest revision as of 08:51, 15 April 2023

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:

https://github.com/lessthanoptimal/ejml/actions/workflows/gradle.yml/badge.svg

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 "all", as is shown below:

Gradle:

  compile group: 'org.ejml', name: 'ejml-all', version: '0.43'

Maven:

<dependency>
  <groupId>org.ejml</groupId>
  <artifactId>ejml-all</artifactId>
  <version>0.43</version>
</dependency>

Individual modules:

Module Name Description
ejml-all All the modules
ejml-ddense Dense Real Double Matrices
ejml-fdense Dense Real Float Matrices
ejml-zdense Dense Complex Double Matrices
ejml-cdense Dense Complex Float Matrices
ejml-simple SimpleMatrix and Equations
ejml-dsparse Sparse Real Double Matrices
ejml-fsparse Sparse Real Float Matrices