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

示例

示例:

[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

示例

示例:

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

参见