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

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