Integral

Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)

Toma la integral

public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit,  
    IMathElement upperLimit, MathLimitLocations limitLocations)  
ParámetroTipoDescripción
integralTypeMathIntegralTypesTipo de integral
lowerLimitIMathElementLímite inferior de la integral
upperLimitIMathElementLímite superior de la integral
limitLocationsMathLimitLocationsubicación de los límites

Valor de Retorno

Nueva instancia del tipo IMathNaryOperator

Ejemplos

Ejemplo:

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

Véase También


Integral(MathIntegralTypes, IMathElement, IMathElement)

Toma la integral

public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit,  
    IMathElement upperLimit)  
ParámetroTipoDescripción
integralTypeMathIntegralTypesTipo de integral
lowerLimitIMathElementLímite inferior de la integral
upperLimitIMathElementLímite superior de la integral

Valor de Retorno

Nueva instancia del tipo IMathNaryOperator

Ejemplos

Ejemplo:

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

Véase También


Integral(MathIntegralTypes)

Toma la integral sin límites

public IMathNaryOperator Integral(MathIntegralTypes integralType)  
ParámetroTipoDescripción
integralTypeMathIntegralTypesTipo de integral

Valor de Retorno

Nueva instancia del tipo IMathNaryOperator

Ejemplos

Ejemplo:

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

Véase También


Integral(MathIntegralTypes, string, string, MathLimitLocations)

Toma la integral

public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit,  
    string upperLimit, MathLimitLocations limitLocations)  
ParámetroTipoDescripción
integralTypeMathIntegralTypesTipo de integral
lowerLimitStringLímite inferior de la integral
upperLimitStringLímite superior de la integral
limitLocationsMathLimitLocationsubicación de los límites

Valor de Retorno

Nueva instancia del tipo IMathNaryOperator

Ejemplos

Ejemplo:

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

Véase También


Integral(MathIntegralTypes, string, string)

Toma la integral

public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit,  
    string upperLimit)  
ParámetroTipoDescripción
integralTypeMathIntegralTypesTipo de integral
lowerLimitStringLímite inferior de la integral
upperLimitStringLímite superior de la integral

Valor de Retorno

Nueva instancia del tipo IMathNaryOperator

Ejemplos

Ejemplo:

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

Véase También