FileDocCategorySizeDatePackage
Log.javaAPI DocApache Poi 3.0.13127Sun Mar 11 12:59:30 GMT 2007org.apache.poi.hssf.record.formula.functions

Log

public class Log extends NumericFunction
author
Amol S. Deshmukh < amolweb at ya hoo dot com > Log: LOG(number,[base])

Fields Summary
private static final double
DEFAULT_BASE
Constructors Summary
Methods Summary
public org.apache.poi.hssf.record.formula.eval.Evalevaluate(org.apache.poi.hssf.record.formula.eval.Eval[] operands, int srcRow, short srcCol)


            
        double d = 0;
        double base = DEFAULT_BASE;
        double num = 0;
        ValueEval retval = null;

        switch (operands.length) {
        default:
            retval = ErrorEval.VALUE_INVALID;
            break;
        case 2: // second arg is base
            ValueEval ve = singleOperandEvaluate(operands[1], srcRow, srcCol);
            if (ve instanceof NumericValueEval) {
                NumericValueEval ne = (NumericValueEval) ve;
                base = ne.getNumberValue();
            }
            else if (ve instanceof BlankEval) {
                // do nothing
            }
            else {
                retval = ErrorEval.NUM_ERROR;
            }

        case 1: // first arg is number
            if (retval == null) {
                ValueEval vev = singleOperandEvaluate(operands[0], srcRow, srcCol);
                if (vev instanceof NumericValueEval) {
                    NumericValueEval ne = (NumericValueEval) vev;
                    num = ne.getNumberValue();
                }
                else if (vev instanceof BlankEval) {
                    // do nothing
                }
                else {
                    retval = ErrorEval.NUM_ERROR;
                }
            }
        }

        if (retval == null) {
            d = (base == E)
                ? Math.log(num)
                : Math.log(num) / Math.log(base);
            retval = (Double.isNaN(d) || Double.isInfinite(d)) ? (ValueEval) ErrorEval.VALUE_INVALID : new NumberEval(d);
        }
        return retval;