WSGetReal32 (C 函数)

int WSGetReal32(WSLINK link,float *x)

link 中获取一个单精度的浮点数,并以 float 的形式存在 x 中.

更多信息

  • 若发生错误,则 WSGetReal32() 返回0;若函数成功,则返回非零值.
  • 如果 WSGetReal32() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h 已对 WSGetReal32() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* read a single-precision floating-point number from a link */

void f(WSLINK lp)
{
    float r;

    if(! WSGetReal32(lp, &r))
        { /* unable to read the floating-point number from lp */ }

    /* ... */
}