Integral

Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)

Prend l’intégrale

public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit, 
    IMathElement upperLimit, MathLimitLocations limitLocations)
ParamètreTaperLa description
integralTypeMathIntegralTypesType intégral
lowerLimitIMathElementLimite inférieure de l’intégrale
upperLimitIMathElementLimite supérieure de l’intégrale
limitLocationsMathLimitLocationsemplacement des limites

Return_Value

Nouvelle instance de typeIMathNaryOperator

Exemples

Exemple :

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

Voir également


Integral(MathIntegralTypes, IMathElement, IMathElement)

Prend l’intégrale

public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit, 
    IMathElement upperLimit)
ParamètreTaperLa description
integralTypeMathIntegralTypesType intégral
lowerLimitIMathElementLimite inférieure de l’intégrale
upperLimitIMathElementLimite supérieure de l’intégrale

Return_Value

Nouvelle instance de typeIMathNaryOperator

Exemples

Exemple :

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

Voir également


Integral(MathIntegralTypes)

Prend l’intégrale sans limites

public IMathNaryOperator Integral(MathIntegralTypes integralType)
ParamètreTaperLa description
integralTypeMathIntegralTypesType intégral

Return_Value

Nouvelle instance de typeIMathNaryOperator

Exemples

Exemple :

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

Voir également


Integral(MathIntegralTypes, string, string, MathLimitLocations)

Prend l’intégrale

public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit, 
    string upperLimit, MathLimitLocations limitLocations)
ParamètreTaperLa description
integralTypeMathIntegralTypesType intégral
lowerLimitStringLimite inférieure de l’intégrale
upperLimitStringLimite supérieure de l’intégrale
limitLocationsMathLimitLocationsemplacement des limites

Return_Value

Nouvelle instance de typeIMathNaryOperator

Exemples

Exemple :

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

Voir également


Integral(MathIntegralTypes, string, string)

Prend l’intégrale

public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit, 
    string upperLimit)
ParamètreTaperLa description
integralTypeMathIntegralTypesType intégral
lowerLimitStringLimite inférieure de l’intégrale
upperLimitStringLimite supérieure de l’intégrale

Return_Value

Nouvelle instance de typeIMathNaryOperator

Exemples

Exemple :

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

Voir également