WSEvaluate (C 函数)

int WSEvaluate(WSLINK link,char*string)

发送一个适于与 ToExpression[] 一起使用的输入字符串给 Wolfram 语言以便计算.

更多信息

  • 不像 WSEvaluateString()WSEvaluate() 将丢弃响应的数据包.
  • WSEvaluate() 只可用于 mprep WSTP 模板 程序.
  • WSEvaluate() 失败时返回0,成功时为非零值.
  • WSTP 的标头文件 wstp.h 已对 WSEvaluate() 作出声明.

范例

基本范例  (1)

:Begin:
:Function: f
:Pattern: KernelTime[]
:Arguments: {}
:ArgumentTypes: Manual
:ReturnType: Manual
:End:

#include "wstp.h"

/* read the Kernel's response to its evaluation of
{Date[], $TimeZone} */

void f(void)
{
    if(! WSEvaluate(stdlink, "{Date[],$TimeZone}"))
        { /* unable to send the expression to stdlink */ }

    /* now read the Kernel's response */
    switch(WSGetType(stdlink))
    {
        /* ... */
    }

    /* ... */    
}