Function

Function(IMathElement)

Prend une fonction d’un argument en utilisant cette instance comme fonction name

public IMathFunction Function(IMathElement functionArgument)
ParamètreTaperLa description
functionArgumentIMathElementUn argument de la fonction

Return_Value

Nouvel élément mathématique de typeIMathFunction

Exemples

Exemple :

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

Voir également


Function(string)

Prend une fonction d’un argument en utilisant cette instance comme fonction name

public IMathFunction Function(string functionArgument)
ParamètreTaperLa description
functionArgumentStringUn argument de la fonction

Return_Value

Nouvel élément mathématique de typeIMathFunction

Exemples

Exemple :

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

Voir également