WSPutReal32 (C 函数)

int WSPutReal32(WSLINK link,double x)

把一单精度浮点数 x 写入由 link 指定的 WSTP 连接,其精度对应于 C 类型 float.

更多信息

  • 自变量 x 在外部程序中一般被声明为 float,但是在 WSPutReal32() 中必须声明为 double,以便于在没有 C 原型的情况下也可以用.
  • 若发生错误,则 WSPutReal32() 返回0;若函数成功,则返回非零值.
  • WSPutReal32() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h 已对 WSPutReal32() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* send the number 3.4 to a link */

void f(WSLINK lp)
{
    float numb = 3.4;

    if(! WSPutReal32(lp, numb))
        { /* unable to send 3.4 to lp */ }
}