Class CM
- java.lang.Object
 - 
- org.apache.sysds.runtime.functionobjects.FunctionObject
 - 
- org.apache.sysds.runtime.functionobjects.ValueFunction
 - 
- org.apache.sysds.runtime.functionobjects.CM
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable
public class CM extends ValueFunction
GENERAL NOTE: * 05/28/2014: We decided to do handle weights consistently to SPSS in an operation-specific manner, i.e., we (1) round instead of casting where required (e.g. count), and (2) consistently use fractional weight values elsewhere. In case a count-base interpretation of weights is needed, just ensure rounding before calling CM/COV/KahanPlus.- See Also:
 - Serialized Form
 
 
- 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Dataexecute(Data in1, double in2)Special case for weights w2==1Dataexecute(Data in1, double in2, double w2)General case for arbitrary weights w2Dataexecute(Data in1, Data in2)Combining stats from two partitions of the data.CMOperator.AggregateOperationTypesgetAggOpType()static CMgetCMFnObject(CM fn)static CMgetCMFnObject(CMOperator.AggregateOperationTypes type)- 
Methods inherited from class org.apache.sysds.runtime.functionobjects.ValueFunction
isBinary, requiresCorrection, toString 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getCMFnObject
public static CM getCMFnObject(CMOperator.AggregateOperationTypes type)
 
- 
getAggOpType
public CMOperator.AggregateOperationTypes getAggOpType()
 
- 
execute
public Data execute(Data in1, double in2)
Special case for weights w2==1- Overrides:
 executein classFunctionObject
 
- 
execute
public Data execute(Data in1, double in2, double w2)
General case for arbitrary weights w2- Overrides:
 executein classFunctionObject
 
- 
execute
public Data execute(Data in1, Data in2)
Combining stats from two partitions of the data.- Overrides:
 executein classFunctionObject
 
 - 
 
 -