Package mondrian.olap.fun.vba
Class Excel
- java.lang.Object
 - 
- mondrian.olap.fun.vba.Excel
 
 
- 
public abstract class Excel extends Object
Implementations of functions in the Excel worksheet library.Functions are loaded into the function table by reflection.
- Since:
 - Dec 31, 2007
 - Author:
 - jhyde
 
 
- 
- 
Constructor Summary
Constructors Constructor Description Excel() 
- 
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static doubleacos(double number)static doubleacosh(double x)static doubleasin(double number)static doubleasinh(double x)static doubleatan2(double y, double x)static doubleatanh(double x)static doublecosh(double number)static doubledegrees(double number)static doublelog10(double number)static doublemod(Object first, Object second)The MOD function.static doublepi()static doublepower(double x, double y)static doubleradians(double number)static doublesinh(double number)static doublesqrtPi(double number)static doubletanh(double number) 
 - 
 
- 
- 
Method Detail
- 
acos
public static double acos(double number)
 
- 
acosh
public static double acosh(double x)
 
- 
asin
public static double asin(double number)
 
- 
asinh
public static double asinh(double x)
 
- 
atan2
public static double atan2(double y, double x) 
- 
atanh
public static double atanh(double x)
 
- 
cosh
public static double cosh(double number)
 
- 
degrees
public static double degrees(double number)
 
- 
log10
public static double log10(double number)
 
- 
mod
public static double mod(Object first, Object second)
The MOD function. Not technically in the Excel package, but this seemed like a good place to put it, since Excel has a MOD function.- Parameters:
 first- Firstsecond- Second- Returns:
 - First modulo second
 
 
- 
pi
public static double pi()
 
- 
power
public static double power(double x, double y) 
- 
radians
public static double radians(double number)
 
- 
sinh
public static double sinh(double number)
 
- 
sqrtPi
public static double sqrtPi(double number)
 
- 
tanh
public static double tanh(double number)
 
 - 
 
 -