Integral

Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)

Принимает интеграл

public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit, 
    IMathElement upperLimit, MathLimitLocations limitLocations)
ПараметрТипОписание
integralTypeMathIntegralTypesТип интеграла
lowerLimitIMathElementНижний предел интеграла
upperLimitIMathElementВерхний предел интеграла
limitLocationsMathLimitLocationsместоположение пределов

Возвращаемое значение

Новый экземпляр типаIMathNaryOperator

Примеры

Пример:

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

Смотрите также


Integral(MathIntegralTypes, IMathElement, IMathElement)

Принимает интеграл

public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit, 
    IMathElement upperLimit)
ПараметрТипОписание
integralTypeMathIntegralTypesТип интеграла
lowerLimitIMathElementНижний предел интеграла
upperLimitIMathElementВерхний предел интеграла

Возвращаемое значение

Новый экземпляр типаIMathNaryOperator

Примеры

Пример:

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

Смотрите также


Integral(MathIntegralTypes)

Берет интеграл без ограничений

public IMathNaryOperator Integral(MathIntegralTypes integralType)
ПараметрТипОписание
integralTypeMathIntegralTypesТип интеграла

Возвращаемое значение

Новый экземпляр типаIMathNaryOperator

Примеры

Пример:

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

Смотрите также


Integral(MathIntegralTypes, string, string, MathLimitLocations)

Принимает интеграл

public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit, 
    string upperLimit, MathLimitLocations limitLocations)
ПараметрТипОписание
integralTypeMathIntegralTypesТип интеграла
lowerLimitStringНижний предел интеграла
upperLimitStringВерхний предел интеграла
limitLocationsMathLimitLocationsместоположение пределов

Возвращаемое значение

Новый экземпляр типаIMathNaryOperator

Примеры

Пример:

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

Смотрите также


Integral(MathIntegralTypes, string, string)

Принимает интеграл

public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit, 
    string upperLimit)
ПараметрТипОписание
integralTypeMathIntegralTypesТип интеграла
lowerLimitStringНижний предел интеграла
upperLimitStringВерхний предел интеграла

Возвращаемое значение

Новый экземпляр типаIMathNaryOperator

Примеры

Пример:

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

Смотрите также