Integral

Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)

取整数

public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit, 
    IMathElement upperLimit, MathLimitLocations limitLocations)
范围类型描述
integralTypeMathIntegralTypes积分类型
lowerLimitIMathElement积分下限
upperLimitIMathElement积分上限
limitLocationsMathLimitLocations限制位置

返回值

类型的新实例IMathNaryOperator

例子

示例:

[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathElement lowerLimit = new MathematicalText("1");
IMathElement upperLimit = new MathematicalText("2");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, lowerLimit, upperLimit, MathLimitLocations.UnderOver);

也可以看看


Integral(MathIntegralTypes, IMathElement, IMathElement)

取整数

public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit, 
    IMathElement upperLimit)
范围类型描述
integralTypeMathIntegralTypes积分类型
lowerLimitIMathElement积分下限
upperLimitIMathElement积分上限

返回值

类型的新实例IMathNaryOperator

例子

示例::::47::

[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathElement lowerLimit = new MathematicalText("1");
IMathElement upperLimit = new MathematicalText("2");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, lowerLimit, upperLimit, MathLimitLocations.UnderOver);

也可以看看


Integral(MathIntegralTypes)

无限制地取积分

public IMathNaryOperator Integral(MathIntegralTypes integralType)
范围类型描述
integralTypeMathIntegralTypes积分类型

返回值

类型的新实例IMathNaryOperator

例子

示例:

[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Contour);

也可以看看


Integral(MathIntegralTypes, string, string, MathLimitLocations)

取整数

public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit, 
    string upperLimit, MathLimitLocations limitLocations)
范围类型描述
integralTypeMathIntegralTypes积分类型
lowerLimitString积分下限
upperLimitString积分上限
limitLocationsMathLimitLocations限制位置

返回值

类型的新实例IMathNaryOperator

例子

示例:

[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, "1", "5", MathLimitLocations.UnderOver);

也可以看看


Integral(MathIntegralTypes, string, string)

取整数

public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit, 
    string upperLimit)
范围类型描述
integralTypeMathIntegralTypes积分类型
lowerLimitString积分下限
upperLimitString积分上限

返回值

类型的新实例IMathNaryOperator

例子

示例::::47::

[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, "1", "5");

也可以看看