package org.nfunk.jep.function; import java.util.Stack; import org.nfunk.jep.ParseException; import org.nfunk.jep.type.Complex; public class Cosine extends PostfixMathCommand { public void run(Stack paramStack) throws ParseException { checkStack(paramStack); Object object = paramStack.pop(); paramStack.push(cos(object)); } public Object cos(Object paramObject) throws ParseException { if (paramObject instanceof Complex) return ((Complex)paramObject).cos(); if (paramObject instanceof Number) return new Double(Math.cos(((Number)paramObject).doubleValue())); throw new ParseException("Invalid parameter type"); } }