Uses of Class
org.apache.poi.ss.formula.functions.XYNumericFunction

Packages that use XYNumericFunction
org.apache.poi.ss.formula.functions   
 

Uses of XYNumericFunction in org.apache.poi.ss.formula.functions
 

Subclasses of XYNumericFunction in org.apache.poi.ss.formula.functions
 class Sumx2my2
          Implementation of Excel function SUMX2MY2()

Calculates the sum of differences of squares in two arrays of the same size.
Syntax:
SUMX2MY2(arrayX, arrayY)

result = Σi: 0..n(xi2-yi2)

 class Sumx2py2
          Implementation of Excel function SUMX2PY2()

Calculates the sum of squares in two arrays of the same size.
Syntax:
SUMX2PY2(arrayX, arrayY)

result = Σi: 0..n(xi2+yi2)

 class Sumxmy2
          Implementation of Excel function SUMXMY2()

Calculates the sum of squares of differences between two arrays of the same size.
Syntax:
SUMXMY2(arrayX, arrayY)

result = Σi: 0..n(xi-yi)2

 



Copyright 2012 The Apache Software Foundation or its licensors, as applicable.