Nary

Nary(MathNaryOperatorTypes, IMathElement, IMathElement)

创建 N 元运算符

public IMathNaryOperator Nary(MathNaryOperatorTypes type, IMathElement lowerLimit, 
    IMathElement upperLimit)
范围类型描述
typeMathNaryOperatorTypesN 元运算符类型
lowerLimitIMathElement下限
upperLimitIMathElement上限

返回值

类型的新实例IMathNaryOperator

例子

示例

[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);

也可以看看


Nary(MathNaryOperatorTypes, string, string)

创建 N 元运算符

public IMathNaryOperator Nary(MathNaryOperatorTypes type, string lowerLimit, string upperLimit)
范围类型描述
typeMathNaryOperatorTypesN 元运算符类型
lowerLimitString下限
upperLimitString上限

返回值

类型的新实例IMathNaryOperator

例子

示例

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

也可以看看