Function

Function(IMathElement)

Takes a function of an argument using this instance as the function name

public IMathFunction Function(IMathElement functionArgument)
ParameterTypeDescription
functionArgumentIMathElementAn argument of the function

Return Value

New math element of type IMathFunction

Examples

Example:

[C#]
IMathElement functionName = new MathematicalText("sin");
IMathElement functionArg = new MathematicalText("x");
IMathFunction func = functionName.Function(functionArg);

See Also


Function(string)

Takes a function of an argument using this instance as the function name

public IMathFunction Function(string functionArgument)
ParameterTypeDescription
functionArgumentStringAn argument of the function

Return Value

New math element of type IMathFunction

Examples

Example:

[C#]
IMathElement functionName = new MathematicalText("sin");
IMathFunction func = functionName.Function("x");

See Also