MathFunction

MathFunction(IMathElement, IMathElement)

Initializes a new instance of the MathFunction class.

public MathFunction(IMathElement funcName, IMathElement baseArgument)

Examples

Example:

[C#]
MathFunction func = new MathFunction(new MathematicalText("sin"), new MathematicalText("x"));

See Also


MathFunction(string, IMathElement)

Initializes a new instance of the MathFunction class.

public MathFunction(string funcName, IMathElement baseArgument)

Examples

Example:

[C#]
MathFunction func = new MathFunction("sin", new MathematicalText("x"));

See Also