MathNaryOperator

MathNaryOperator(char, IMathElement, IMathElement, IMathElement)

初始化 MathNaryOperator 类的新实例。

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument, IMathElement lowerLimit, 
    IMathElement upperLimit)
范围类型描述
operatorSymbolCharNary operator symbol
baseArgumentIMathElementBase argument
lowerLimitIMathElement下限
upperLimitIMathElement上限

例子

示例:

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

也可以看看


MathNaryOperator(char, IMathElement, IMathElement)

初始化 MathNaryOperator 类的新实例。

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument, IMathElement lowerLimit)
范围类型描述
operatorSymbolCharNary operator symbol
baseArgumentIMathElementBase argument
lowerLimitIMathElement下限

例子

示例:

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

也可以看看


MathNaryOperator(char, IMathElement)

初始化 MathNaryOperator 类的新实例。

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument)
范围类型描述
operatorSymbolCharNary operator symbol
baseArgumentIMathElementBase argument

例子

示例:

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

也可以看看