Integral

Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)

Takes the integral

public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit, 
    IMathElement upperLimit, MathLimitLocations limitLocations)
ParameterTypeDescription
integralTypeMathIntegralTypesIntegral type
lowerLimitIMathElementLower limit of integral
upperLimitIMathElementUpper limit of integral
limitLocationsMathLimitLocationslocation of limits

Return Value

New instance of type IMathNaryOperator

Examples

Example:

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

See Also


Integral(MathIntegralTypes, IMathElement, IMathElement)

Takes the integral

public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit, 
    IMathElement upperLimit)
ParameterTypeDescription
integralTypeMathIntegralTypesIntegral type
lowerLimitIMathElementLower limit of integral
upperLimitIMathElementUpper limit of integral

Return Value

New instance of type IMathNaryOperator

Examples

Example:

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

See Also


Integral(MathIntegralTypes)

Takes the integral without limits

public IMathNaryOperator Integral(MathIntegralTypes integralType)
ParameterTypeDescription
integralTypeMathIntegralTypesIntegral type

Return Value

New instance of type IMathNaryOperator

Examples

Example:

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

See Also


Integral(MathIntegralTypes, string, string, MathLimitLocations)

Takes the integral

public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit, 
    string upperLimit, MathLimitLocations limitLocations)
ParameterTypeDescription
integralTypeMathIntegralTypesIntegral type
lowerLimitStringLower limit of integral
upperLimitStringUpper limit of integral
limitLocationsMathLimitLocationslocation of limits

Return Value

New instance of type IMathNaryOperator

Examples

Example:

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

See Also


Integral(MathIntegralTypes, string, string)

Takes the integral

public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit, 
    string upperLimit)
ParameterTypeDescription
integralTypeMathIntegralTypesIntegral type
lowerLimitStringLower limit of integral
upperLimitStringUpper limit of integral

Return Value

New instance of type IMathNaryOperator

Examples

Example:

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

See Also