Integral

Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)

Prend l’intégrale

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

Valeur de retour

Nouvelle instance de type IMathNaryOperator

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 aussi


Integral(MathIntegralTypes, IMathElement, IMathElement)

Prend l’intégrale

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

Valeur de retour

Nouvelle instance de type IMathNaryOperator

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 aussi


Integral(MathIntegralTypes)

Prend l’intégrale sans limites

public IMathNaryOperator Integral(MathIntegralTypes integralType)
ParamètreTypeDescription
integralTypeMathIntegralTypesType d’intégrale

Valeur de retour

Nouvelle instance de type IMathNaryOperator

Exemples

Exemple:

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

Voir aussi


Integral(MathIntegralTypes, string, string, MathLimitLocations)

Prend l’intégrale

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

Valeur de retour

Nouvelle instance de type IMathNaryOperator

Exemples

Exemple:

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

Voir aussi


Integral(MathIntegralTypes, string, string)

Prend l’intégrale

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

Valeur de retour

Nouvelle instance de type IMathNaryOperator

Exemples

Exemple:

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

Voir aussi