AsArgumentOfFunction

AsArgumentOfFunction(IMathElement)

以使用此实例作为参数的指定函数

public IMathFunction AsArgumentOfFunction(IMathElement functionName)
范围类型描述
functionNameIMathElementFunction名称

返回值

类型的新数学元素IMathFunction

例子

示例:

[C#]
IMathElement functionName = new MathematicalText("sin");
IMathElement functionArg = new MathematicalText("x");
IMathFunction func = functionArg.AsArgumentOfFunction(functionName);

也可以看看


AsArgumentOfFunction(string)

以使用此实例作为参数的指定函数

public IMathFunction AsArgumentOfFunction(string functionName)
范围类型描述
functionNameStringFunction名称

返回值

类型的新数学元素IMathFunction

例子

示例:

[C#]
IMathElement functionArg = new MathematicalText("x");
IMathFunction func = functionArg.AsArgumentOfFunction("cos");

也可以看看


AsArgumentOfFunction(MathFunctionsOfOneArgument)

以使用此实例作为参数的指定函数

public IMathFunction AsArgumentOfFunction(MathFunctionsOfOneArgument functionType)
范围类型描述
functionTypeMathFunctionsOfOneArgument一一个参数的公共函数类型

返回值

类型的新数学元素IMathFunction

例子

示例:

[C#]
IMathElement functionName = new MathematicalText("sin");
IMathElement functionArg = new MathematicalText("x");
IMathFunction func = functionArg.AsArgumentOfFunction(functionName);

也可以看看


AsArgumentOfFunction(MathFunctionsOfTwoArguments, IMathElement)

将使用此实例的指定函数作为参数并指定附加参数

public IMathFunction AsArgumentOfFunction(MathFunctionsOfTwoArguments functionType, 
    IMathElement additionalArgument)
范围类型描述
functionTypeMathFunctionsOfTwoArguments两个参数的常用函数类型之一:Log、Lim、Min、Max
additionalArgumentIMathElement附加参数取决于函数的类型

返回值

类型的新数学元素IMathFunction

例子

示例:

[C#]
IMathElement functionArg = new MathematicalText("x");
IMathElement logarithmBase = new MathematicalText("5");
IMathFunction func = functionArg.AsArgumentOfFunction(MathFunctionsOfTwoArguments.Log, logarithmBase);  // 返回 'x' 以 '5' 为底的对数

也可以看看


AsArgumentOfFunction(MathFunctionsOfTwoArguments, string)

将使用此实例的指定函数作为参数并指定附加参数

public IMathFunction AsArgumentOfFunction(MathFunctionsOfTwoArguments functionType, 
    string additionalArgument)
范围类型描述
functionTypeMathFunctionsOfTwoArguments两个参数的常用函数类型之一:Log、Lim、Min、Max
additionalArgumentString附加参数取决于函数的类型

返回值

类型的新数学元素IMathFunction

例子

示例:

[C#]
IMathElement functionArg = new MathematicalText("x");
IMathFunction func = functionArg.AsArgumentOfFunction(MathFunctionsOfTwoArguments.Log, "5");  // 返回 'x' 以 '5' 为底的对数

也可以看看