master
Steve L. Nyemba 9 years ago
commit 51b2ad2f54

@ -42,6 +42,7 @@ jx.dom.remove = function(id){
_item = id ; _item = id ;
} }
_item.parentNode.removeChild(_item) ; _item.parentNode.removeChild(_item) ;
return _item ;
} }

@ -58,4 +58,3 @@ jx.ml.mapreduce = function(data,fn_map,fn_reduce){
* The modules developed below will perform linear regression and logistic regression * The modules developed below will perform linear regression and logistic regression
*/ */
jx.ml.regression = {} jx.ml.regression = {}

@ -112,6 +112,15 @@ jx.ajax.get.instance = function(){
} }
this.put = function(url,callback){
this.send(url,callback,'PUT') ;
}
this.get = function(url,callback){
this.send(url,callback,'GET') ;
}
this.post = function(url,callback){
this.send(url,callback,'POST') ;
}
}//-- end of the factory method }//-- end of the factory method
return new factory() ; return new factory() ;
} }
@ -119,3 +128,4 @@ jx.ajax.get.instance = function(){
// //
// backward compatibility // backward compatibility
jx.ajax.getInstance = jx.ajax.get.instance ; jx.ajax.getInstance = jx.ajax.get.instance ;
HttpClient = jx.ajax.get ;

@ -89,6 +89,20 @@ jx.utils.unique = function (list,getKey){
}) })
} }
} }
jx.utils.join = function(x,y){
if(x.length != y.length){
return []
}else{
var rec = x ;
for(var i in rec){
//
//@TODO: Consider the case we are adding to a matrix
//
rec[i] = [x[i],y[i]]
}
return rec ;
}
}
/** /**
* Implementation of a few standard design patterns. Their use is user/dependent * Implementation of a few standard design patterns. Their use is user/dependent
* For more information on how/when to use a design pattern please use google/wikipedia ;-) * For more information on how/when to use a design pattern please use google/wikipedia ;-)
@ -169,3 +183,4 @@ jx.utils.patterns.observer = function(lobservers,init){
* @return array containing casted type * @return array containing casted type
*/ */
jx.utils.cast = jx.utils.patterns.visitor ; jx.utils.cast = jx.utils.patterns.visitor ;

Loading…
Cancel
Save