User contributions
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 22:08, 21 March 2015 (diff | hist) . . (+12,134) . . N Equations (Created page with "Writing succinct and readable linear algebra code in Java, using any library, is problematic. Originally EJML just offered two API's for performing linear algebra. A procedu...")
- 22:07, 21 March 2015 (diff | hist) . . (+1,677) . . Example Levenberg-Marquardt
- 21:56, 21 March 2015 (diff | hist) . . (+2,608) . . N Example Fixed Sized Matrices (Created page with "Array access adds a significant amount of overhead to matrix operations. A fixed sized matrix gets around that issue by having each element in the matrix be a variable in the...")
- 21:54, 21 March 2015 (diff | hist) . . (+4,002) . . N Example Customizing SimpleMatrix (Created page with " SimpleMatrix provides an easy to use object oriented way of doing linear algebra. There are many other problems which use matrices and could use SimpleMatrix's functiona...")
- 21:50, 21 March 2015 (diff | hist) . . (+117) . . Manual
- 21:47, 21 March 2015 (diff | hist) . . (+8) . . Example Kalman Filter
- 21:38, 21 March 2015 (diff | hist) . . (-2) . . Manual
- 21:37, 21 March 2015 (diff | hist) . . (-187) . . Example Polynomial Roots
- 21:36, 21 March 2015 (diff | hist) . . (+2,255) . . N Example Polynomial Roots (Created page with "Eigenvalue decomposition can be used to find the roots in a polynomial by constructing the so called [http://en.wikipedia.org/wiki/Companion_matrix companion matrix]. While f...")
- 21:34, 21 March 2015 (diff | hist) . . (+5,035) . . N Example Polynomial Fitting (Created page with "In this example it is shown how EJML can be used to fit a polynomial of arbitrary degree to a set of data. The key concepts shown here are; 1) how to create a linear using Li...")
- 21:32, 21 March 2015 (diff | hist) . . (-14) . . Manual
- 21:30, 21 March 2015 (diff | hist) . . (+8,831) . . N Example Principal Component Analysis (Created page with "Principal Component Analysis (PCA) is a popular and simple to implement classification technique, often used in face recognition. The following is an example of how to implem...")
- 21:25, 21 March 2015 (diff | hist) . . (+32) . . Manual
- 20:31, 21 March 2015 (diff | hist) . . (-2) . . Manual
- 20:29, 21 March 2015 (diff | hist) . . (+11,554) . . N Example Levenberg-Marquardt (Created page with "Levenberg-Marquardt is a popular non-linear optimization algorithm. This example demonstrate how a basic implementation of Levenberg-Marquardt can be created using EJML's Pr...")
- 20:23, 21 March 2015 (diff | hist) . . (+164) . . Frequently Asked Questions
- 20:22, 21 March 2015 (diff | hist) . . (+46) . . Manual
- 20:19, 21 March 2015 (diff | hist) . . (0) . . MediaWiki:Sidebar
- 20:19, 21 March 2015 (diff | hist) . . (+196) . . N MediaWiki:Sidebar (Created page with " * navigation ** mainpage|mainpage-description ** manual|manual ** download|download ** recentchanges-url|recentchanges ** randompage-url|randompage ** helppage|help * SEARCH...")
- 20:13, 21 March 2015 (diff | hist) . . (+15) . . Example Kalman Filter
- 20:11, 21 March 2015 (diff | hist) . . (+270) . . Example Kalman Filter
- 20:01, 21 March 2015 (diff | hist) . . (+8,457) . . N Example Kalman Filter (Created page with "= Introduction = Here are three examples that demonstrate how a [http://en.wikipedia.org/wiki/Kalman_filter Kalman filter]] can be created using different API's in EJML. Eac...")
- 19:52, 21 March 2015 (diff | hist) . . (-42) . . Matlab to EJML
- 19:49, 21 March 2015 (diff | hist) . . (-12) . . Matlab to EJML
- 19:48, 21 March 2015 (diff | hist) . . (-6) . . Matlab to EJML
- 19:46, 21 March 2015 (diff | hist) . . (-1) . . Matlab to EJML
- 19:45, 21 March 2015 (diff | hist) . . (+5,449) . . N Matlab to EJML (Created page with "To help Matlab users quickly learn how to use EJML a list of equivalent functions is provided below Many functions in Matlab have equivalent or similar functions in EJML. To...")
- 19:23, 21 March 2015 (diff | hist) . . (+482) . . Manual
- 16:23, 21 March 2015 (diff | hist) . . (0) . . Main Page
- 16:19, 21 March 2015 (diff | hist) . . (+1,845) . . Manual
- 16:06, 21 March 2015 (diff | hist) . . (-19) . . Main Page
- 16:03, 21 March 2015 (diff | hist) . . (+3,596) . . N Manual (Created page with "= The Basics = What exactly is Efficient Java Matrix Library (EJML)? EJML is a Java library for performing standard linear algebra operations on dense matrices. Typically t...")
- 15:24, 21 March 2015 (diff | hist) . . (+3,599) . . N Performance (Created page with "= How does EJML compare? = There are several issues to consider when selecting a linear algebra library; runtime speed, memory consumption, and stability. All three are very...")
- 03:09, 16 March 2015 (diff | hist) . . (+1,681) . . N Download (Created page with "== 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:...")
- 07:38, 15 March 2015 (diff | hist) . . (-53) . . Frequently Asked Questions
- 07:23, 15 March 2015 (diff | hist) . . (+14) . . Main Page
- 06:56, 15 March 2015 (diff | hist) . . (+1,575) . . N Acknowledgments (Created page with "== Development == EJML has been developed almost entirely by [https://www.linkedin.com/profile/view?id=9580871 Peter Abeles] in his spare time. Much of the development of EJ...") (current)
- 06:36, 15 March 2015 (diff | hist) . . (+2,759) . . N Frequently Asked Questions (Created page with "#summary Frequently Asked Questions = Frequently Asked Questions= Here is a list of frequently asked questions about EJML. Most of these questions have been asked and answe...")
- 21:19, 14 March 2015 (diff | hist) . . (+192) . . Main Page
- 21:05, 14 March 2015 (diff | hist) . . (+6,069) . . N Users (Created page with "= Projects which use EJML = Feel free to add your own project! * [http://wiki.industrial-craft.net Industrial Craft 2] modification for minecraft * [http://www-lium.univ-lem...")
- 20:46, 14 March 2015 (diff | hist) . . (+121) . . Main Page
- 18:47, 14 March 2015 (diff | hist) . . (+14) . . Main Page
- 18:41, 14 March 2015 (diff | hist) . . (-26) . . Main Page
- 18:20, 14 March 2015 (diff | hist) . . (+68) . . Main Page
- 18:17, 14 March 2015 (diff | hist) . . (+108) . . Main Page
- 18:14, 14 March 2015 (diff | hist) . . (+1,498) . . Main Page
- 17:24, 14 March 2015 (diff | hist) . . (+56) . . Main Page
- 17:11, 14 March 2015 (diff | hist) . . (+577) . . Main Page
- 16:07, 14 March 2015 (diff | hist) . . (+607) . . Main Page
- 15:51, 14 March 2015 (diff | hist) . . (+26) . . N File:Ejml logo.gif (Large logo with EJML text.) (current)
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)