Uses of Interface
org.apache.poi.ss.formula.functions.Function2Arg

Packages that use Function2Arg
org.apache.poi.ss.formula.eval   
org.apache.poi.ss.formula.functions   
 

Uses of Function2Arg in org.apache.poi.ss.formula.eval
 

Classes in org.apache.poi.ss.formula.eval that implement Function2Arg
 class ConcatEval
           
 class IntersectionEval
           
 class RangeEval
           
 class RelationalOperationEval
          Base class for all comparison operator evaluators
 class TwoOperandNumericOperation
           
 

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

Classes in org.apache.poi.ss.formula.functions that implement Function2Arg
 class Complex
          Implementation for Excel COMPLEX () function.
 class Countif
          Implementation for the function COUNTIF Syntax: COUNTIF ( range, criteria ) range   is the range of cells to be counted based on the criteria criteriais used to determine which cells to count
 class Days360
          Calculates the number of days between two dates based on a 360-day year (twelve 30-day months), which is used in some accounting calculations.
 class Dec2Bin
          Implementation for Excel Bin2Dec() function.
 class Dec2Hex
          Implementation for Excel DELTA() function.
 class Delta
          Implementation for Excel DELTA() function.
 class Fixed
           
 class Fixed2ArgFunction
          Convenience base class for functions that must take exactly two arguments.
 class Hyperlink
          Implementation of Excel HYPERLINK function.
 class IfFunc
          Implementation for the Excel function IF
 class Index
          Implementation for the Excel function INDEX Syntax :
INDEX ( reference, row_num[, column_num [, area_num]])
INDEX ( array, row_num[, column_num]) referencetypically an area reference, possibly a union of areas arraya literal array value (currently not supported) row_numselects the row within the array or area reference column_numselects column within the array or area reference. default is 1 area_numused when reference is a union of areas
 class Intercept
          Implementation of Excel function INTERCEPT()

Calculates the INTERCEPT of the linear regression line that is used to predict y values from x values
(http://introcs.cs.princeton.edu/java/97data/LinearRegression.java.html) Syntax:
INTERCEPT(arrayX, arrayY)

 class LinearRegressionFunction
          Base class for linear regression functions.
 class Lookup
          Implementation of Excel function LOOKUP.
 class Match
          Implementation for the MATCH() Excel function.
static class NumericFunction.TwoArg
           
 class Quotient
          Implementation for Excel QUOTIENT () function.
 class Rank
          Returns the rank of a number in a list of numbers.
 class Rept
          Implementation for Excel REPT () function.
 class Roman
          Implementation for Excel WeekNum() function.
 class Slope
          Implementation of Excel function SLOPE()

Calculates the SLOPE of the linear regression line that is used to predict y values from x values
(http://introcs.cs.princeton.edu/java/97data/LinearRegression.java.html) Syntax:
SLOPE(arrayX, arrayY)

 class Sumif
          Implementation for the Excel function SUMIF Syntax :
SUMIF ( range, criteria, sum_range )
rangeThe range over which criteria is applied.
 class Sumx2my2
          Implementation of Excel function SUMX2MY2()

Calculates the sum of differences of squares in two arrays of the same size.

 class Sumx2py2
          Implementation of Excel function SUMX2PY2()

Calculates the sum of squares in two arrays of the same size.

 class Sumxmy2
          Implementation of Excel function SUMXMY2()

Calculates the sum of squares of differences between two arrays of the same size.

 class WeekNum
          Implementation for Excel WeekNum() function.
 class XYNumericFunction
           
 



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