WSPutReal32 (C 函数)
int WSPutReal32(WSLINK link,double x)
把一单精度浮点数 x 写入由 link 指定的 WSTP 连接,其精度对应于 C 类型 float.
范例
基本范例 (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 */ }
}