bug fix (minor)

master
Steve L. Nyemba 10 years ago
parent d1b47d2d5e
commit 974e87bc1f

Binary file not shown.

@ -16,6 +16,18 @@ In addition we tried to mildly specify preconditions for executions of functions
<b>rpc.js</b>: <b>rpc.js</b>:
<b>utils.js</b>: <b>utils.js</b>:
Implementation of miscellaneous utilities commonly used, These functions are reusable and simple:
<b>jx.utils.vector</b> extracts a vector from an array of objects (or a matrix)
<b>jx.utils.keys</b> extract keys from an associative array
<b>jx.utils.unique</b> returns unique objects in an array, including array of objects (provided an key function)
<b>jx.utils.patterns</b>:
Implementation of design patterns defined by the GOF http://en.wikipedia.org/wiki/Software_design_pattern
<b>jx.utils.patterns.visitor</b> The visitor design pattern
<b>jx.utils.patterns.iterator</b> The iterator design pattern
<b>jx.utils.patterns.observer</b> The observer design pattern
<b>ext/math.js</b>: <b>ext/math.js</b>:

@ -11,7 +11,7 @@
* jx.ml.mapreduce Performs a standard/basic mapreduce (single thread for now) * jx.ml.mapreduce Performs a standard/basic mapreduce (single thread for now)
* jx.ml.regression Will perform linear & logistic regressions * jx.ml.regression Will perform linear & logistic regressions
*/ */
*
if(!jx){ if(!jx){
var jx = {} ; var jx = {} ;
} }

Loading…
Cancel
Save