IMathFunction

IMathFunction 接口

指定一个参数的函数。

public interface IMathFunction : IMathElement

属性

名称描述
AsIMathElement { get; }允许获取基础 IMathElement 接口 IMathElement
Base { get; }函数参数
Name { get; }函数名称 例如,函数名称为 sin 和 cos

示例

示例:

[C#]
IMathFunction sinX = new MathematicalText("sin").Function("x");

另见