Nary

Nary(MathNaryOperatorTypes, IMathElement, IMathElement)

Crée un opérateur N-aire

public IMathNaryOperator Nary(MathNaryOperatorTypes type, IMathElement lowerLimit, 
    IMathElement upperLimit)
ParamètreTaperLa description
typeMathNaryOperatorTypesLe type d’opérateur N-aire
lowerLimitIMathElementLa limite inférieure
upperLimitIMathElementLa limite supérieure

Return_Value

Nouvelle instance de typeIMathNaryOperator

Exemples

Exemple :

[C#]
IMathElement baseElement = new MathematicalText("i-1");
IMathElement lowerLimit = new MathematicalText("i=0");
IMathElement upperLimit = new MathematicalText("𝑛");
IMathNaryOperator naryOperator = baseElement.Nary(MathNaryOperatorTypes.Summation, lowerLimit, upperLimit);

Voir également


Nary(MathNaryOperatorTypes, string, string)

Crée un opérateur N-aire

public IMathNaryOperator Nary(MathNaryOperatorTypes type, string lowerLimit, string upperLimit)
ParamètreTaperLa description
typeMathNaryOperatorTypesLe type d’opérateur N-aire
lowerLimitStringLa limite inférieure
upperLimitStringLa limite supérieure

Return_Value

Nouvelle instance de typeIMathNaryOperator

Exemples

Exemple :

[C#]
IMathNaryOperator naryOperator = new MathematicalText("i").Nary(MathNaryOperatorTypes.Summation, "i=0", "𝑛");

Voir également