MLPutSymbol (C 函数)

MLPutSymbol 已经被 WSPutSymbol 所取代.

int MLPutSymbol(MLINK link,const char *s)

把由字符字符串 s 给定名称的符号写入由 link 指定的 MathLink 连接.

更多信息

  • 字符字符串必须以零字节结束,对应于 C 中的 0.
  • MLPutSymbol() 在错误事件中返回0,如果函数成功则返回非零值.
  • 如果 MLPutSymbol() 失败,则使用 MLError() 检索错误代码.
  • MLPutSymbol() 在 MathLink 标头文件 mathlink.h 中被声明.

范例

基本范例  (1)

#include "mathlink.h"

/* send the expression Integrate[Sin[x],x] to a link */

void f(MLINK lp)
{
    if(! MLPutFunction(lp, "Integrate", 2))
        { /* unable to put the function to lp */ }

    if(! MLPutFunction(lp, "Sin", 1))
        { /* unable to put the function to lp */ }

    if(! MLPutSymbol(lp, "x"))
        { /* unable to put the symbol to lp */ }

    if(! MLPutSymbol(lp, "x"))
        { /* unable to put the symbol to lp */ }

    if(! MLEndPacket(lp))
        { /* unable to send the end-of-packet indicator to lp */ }

    if(! MLFlush(lp))
        { /* unable to flush any outgoing data buffered in lp */ }
}