MathFunction

MathFunction(IMathElement, IMathElement)

Initialisiert eine neue Instanz der MathFunction-Klasse.

public MathFunction(IMathElement funcName, IMathElement baseArgument)

Beispiele

Beispiel:

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

Siehe auch


MathFunction(string, IMathElement)

Initialisiert eine neue Instanz der MathFunction-Klasse.

public MathFunction(string funcName, IMathElement baseArgument)

Beispiele

Beispiel:

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

Siehe auch