IMathFunctionFactory

public interface IMathFunctionFactory

Allows to create a math function


For COM comparibility

Methods

MethodDescription
createMathFunction(IMathElement funcName, IMathElement baseArgument)Creates math function
createMathFunction(String funcName, IMathElement baseArgument)Creates math function

createMathFunction(IMathElement funcName, IMathElement baseArgument)

public abstract IMathFunction createMathFunction(IMathElement funcName, IMathElement baseArgument)

Creates math function

Parameters:

ParameterTypeDescription
funcNameIMathElementElement used as a function name
baseArgumentIMathElementElement used as a function argument

Returns: IMathFunction - new math function

createMathFunction(String funcName, IMathElement baseArgument)

public abstract IMathFunction createMathFunction(String funcName, IMathElement baseArgument)

Creates math function

Parameters:

ParameterTypeDescription
funcNamejava.lang.StringFunction name
baseArgumentIMathElementElement used as a function argument

Returns: IMathFunction - new math function