MathNaryOperator

MathNaryOperator(char, IMathElement, IMathElement, IMathElement)

Initialise une nouvelle instance de la classe MathNaryOperator.

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument, IMathElement lowerLimit, 
    IMathElement upperLimit)
ParamètreTaperLa description
operatorSymbolCharSymbole de l’opérateur Nary
baseArgumentIMathElementArgument de base
lowerLimitIMathElementLimite inférieure
upperLimitIMathElementLimite supérieure

Exemples

Exemple :

[C#]
IMathNaryOperator naryOperator = new MathNaryOperator('∑', new MathematicalText("i"), new MathematicalText("i=0"), new MathematicalText("𝑛"));

Voir également


MathNaryOperator(char, IMathElement, IMathElement)

Initialise une nouvelle instance de la classe MathNaryOperator.

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument, IMathElement lowerLimit)
ParamètreTaperLa description
operatorSymbolCharSymbole de l’opérateur Nary
baseArgumentIMathElementArgument de base
lowerLimitIMathElementLimite inférieure

Exemples

Exemple :

[C#]
IMathNaryOperator naryOperator = new MathNaryOperator('∑', new MathematicalText("i"), new MathematicalText("i"));

Voir également


MathNaryOperator(char, IMathElement)

Initialise une nouvelle instance de la classe MathNaryOperator.

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument)
ParamètreTaperLa description
operatorSymbolCharSymbole de l’opérateur Nary
baseArgumentIMathElementArgument de base

Exemples

Exemple :

[C#]
IMathNaryOperator naryOperator = new MathNaryOperator('∑', new MathematicalText("i"));

Voir également