Integral

Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)

Toma la integral

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

Valor_devuelto

Nueva instancia de tipoIMathNaryOperator

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

Ver también


Integral(MathIntegralTypes, IMathElement, IMathElement)

Toma la integral

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

Valor_devuelto

Nueva instancia de tipoIMathNaryOperator

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

Ver también


Integral(MathIntegralTypes)

Toma la integral sin límites

public IMathNaryOperator Integral(MathIntegralTypes integralType)
ParámetroEscribeDescripción
integralTypeMathIntegralTypestipo integral

Valor_devuelto

Nueva instancia de tipoIMathNaryOperator

Ejemplos

Ejemplo:

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

Ver también


Integral(MathIntegralTypes, string, string, MathLimitLocations)

Toma la integral

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

Valor_devuelto

Nueva instancia de tipoIMathNaryOperator

Ejemplos

Ejemplo:

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

Ver también


Integral(MathIntegralTypes, string, string)

Toma la integral

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

Valor_devuelto

Nueva instancia de tipoIMathNaryOperator

Ejemplos

Ejemplo:

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

Ver también