File: control

package info (click to toggle)
libejml-java 0.28-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,768 kB
  • ctags: 6,078
  • sloc: java: 51,197; xml: 214; makefile: 17
file content (40 lines) | stat: -rw-r--r-- 1,582 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Source: libejml-java
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Andreas Tille <tille@debian.org>
Section: java
Priority: optional
Build-Depends: debhelper (>= 9),
               javahelper,
               default-jdk,
               ant,
               gradle
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/libejml-java.git
Vcs-Git: git://anonscm.debian.org/pkg-java/libejml-java.git
Homepage: http://ejml.org/wiki

Package: libejml-java
Architecture: all
Depends: ${misc:Depends},
         ${java:Depends}
Recommends: ${java:Recommends}
Description: Efficient Java Matrix Library
 Efficient Java Matrix Library (EJML) is a linear algebra library for
 manipulating dense matrices. Its design goals are;
  1) to be as computationally and memory efficient as possible for both
     small and large matrices, and
  2) to be accessible to both novices and experts.
 These goals are accomplished by dynamically selecting the best
 algorithms to use at runtime, clean API, and multiple interfaces.
 .
 EJML has three distinct ways to interact with it:
  1) procedural,
  2) SimpleMatrix, and
  3) Equations.
 Procedure provides all capabilities of EJML and almost complete control
 over memory creation, speed, and specific algorithms. SimpleMatrix
 provides a simplified subset of the core capabilities in an easy to use
 flow styled object-oriented API, inspired by Jama. Equations is a
 symbolic interface, similar in spirit to Matlab and other CAS, that
 provides a compact way of writing equations.