Difference between revisions of "Main Page"
Line 22: | Line 22: | ||
|- valign="top" | |- valign="top" | ||
| width="220pt" | | | width="220pt" | | ||
− | {| width="200pt" border="1" align="center" style="font-size:120%; text-align:center;" | + | {| width="200pt" border="1" align="center" style="font-size:120%; text-align:center; order-collapse:collapse;" |
|- | |- | ||
| [[Download|Download]] | | [[Download|Download]] | ||
Line 31: | Line 31: | ||
|} | |} | ||
| width="220pt" | | | width="220pt" | | ||
− | {| width="200pt" border="1" align="center" style="font-size:120%; text-align:center;" | + | {| width="200pt" border="1" align="center" style="font-size:120%; text-align:center; order-collapse:collapse;" |
|- | |- | ||
| [http://groups.google.com/group/efficient-java-matrix-library-discuss Message Board] | | [http://groups.google.com/group/efficient-java-matrix-library-discuss Message Board] | ||
Line 40: | Line 40: | ||
|} | |} | ||
| width="220pt" | | | width="220pt" | | ||
− | {| width="200pt" border="1" align="center" style="font-size:120%; text-align:center;" | + | {| width="200pt" border="1" align="center" style="font-size:120%; text-align:center; order-collapse:collapse;" |
|- | |- | ||
| [[Acknowledgments|Acknowledgments]] | | [[Acknowledgments|Acknowledgments]] | ||
Line 81: | Line 81: | ||
== Functionality == | == Functionality == | ||
− | {| width="850pt" border="1" | | + | {| width="850pt" border="1" style="border-collapse:collapse" | |
! Data Structures || Operations | ! Data Structures || Operations | ||
|- | |- |
Revision as of 18:17, 14 March 2015
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 is free, written in 100% Java and has been released under an Apache v2.0 license. EJML has three distinct ways to interact with it: 1) procedural, 2) object oriented, and 3) equations. Procedure provides all capabilities of EJML and almost complete control over memory creation, speed, and specific algorithms. Object oriented provides a simplified subset of the core capabilities in an easy to use 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. |
| |||||||||||
|
|
|
Code Examples
Equations eq.process("K = P*H'*inv( H*P*H' + R )");
Object Oriented SimpleMatrix S = H.mult(P).mult(H.transpose()).plus(R);
SimpleMatrix K = P.mult(H.transpose().mult(S.invert()));
Procedural mult(H,P,c);
multTransB(c,H,S);
addEquals(S,R);
if( !invert(S,S_inv) ) throw new RuntimeException("Invert failed");
multTransA(H,S_inv,d);
mult(P,d,K);
|
Functionality
Data Structures | Operations |
---|---|
|
|