Function

Function(IMathElement)

Prend une fonction d’un argument en utilisant cette instance comme nom de la fonction

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

Valeur de Retour

Nouvel élément mathématique de type IMathFunction

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 nom de la fonction

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

Valeur de Retour

Nouvel élément mathématique de type IMathFunction

Exemples

Exemple:

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

Voir Également