WSPutReal128Array (C 函数)
int WSPutReal128Array(WSLINK link,const wsextended_double *a,const int *dims,const char **heads,int d)
把一扩展精度浮点数数组写入由 link 指定的 WSTP 连接中形成深度为 d,维数为 dims 的数组.
更多信息
- 数组 a 在内存中的布局必须像一个被明确声明为 wsextended_double a[m][n]…的 C 数组.
- 如果 heads 为 NULL,那么数组将被假设为在每层中具有标头 List.
- 在 i 层的数组长度为 .
- 若发生错误,则 WSPutReal128Array() 返回0;若函数成功,则返回非零值.
- 若 WSPutReal128Array() 失败,则使用 WSError() 检索错误代码.
- WSTP 的标头文件 wstp.h 已对 WSPutReal128Array() 作出声明.
范例
基本范例 (1)
#include "wstp.h"
/* put an array of extended-precision floating-point numbers to a link */
void f(WSLINK lp)
{
wsextended_double array[2][10][2];
int dims[3];
int i;
for(i = 0; i < 40; i++)
*((wsextended_double *)array + i) = (wsextended_double)(i + .1);
dims[0] = 2;
dims[1] = 10;
dims[2] = 2;
if(! WSPutReal128Array(lp, (wsextended_double *)array, (int *)dims, (char **)0, 3))
{ /* unable to send the array to lp */ }
}