public interface IMathFunction extends IMathElement
Specifies a function of an argument.
Example:IMathFunction sinX = new MathematicalText("sin").function("x");
Modifier and Type | Method and Description |
---|---|
IMathElement |
getBase()
Function Argument
|
IMathElement |
getName()
Function name
For example, function names are sin and cos
|
accent, asArgumentOfFunction, asArgumentOfFunction, asArgumentOfFunction, asArgumentOfFunction, asArgumentOfFunction, divide, divide, divide, divide, enclose, enclose, function, function, getChildren, group, group, integral, integral, integral, integral, integral, join, join, nary, nary, overbar, radical, radical, setLowerLimit, setLowerLimit, setSubscript, setSubscript, setSubSuperscriptOnTheLeft, setSubSuperscriptOnTheLeft, setSubSuperscriptOnTheRight, setSubSuperscriptOnTheRight, setSuperscript, setSuperscript, setUpperLimit, setUpperLimit, toBorderBox, toBorderBox, toBox, toMathArray, underbar
IMathElement getName()
Function name For example, function names are sin and cos
Example:IMathFunction func = new MathematicalText("sin").function("x"); IMathElement funcName = func.getName();
IMathElement getBase()
Function Argument
Example:IMathFunction func = new MathematicalText("sin").function("x"); IMathElement base = func.getBase();