Download
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 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>