WSPutReal64Array (C 関数)
int WSPutReal64Array(WSLINK link,const double *a,const int *dims,const char **heads,int d)
倍精度浮動小数点数の配列を で指定されたWSTP接続に置いて,次元が で深さが の配列を形成する.
例題
例 (1)
#include "wstp.h"
/* put an array of double-precision floating-point numbers to a link */
void f(WSLINK lp)
{
double array[2][10][2];
int dims[3];
int i;
for(i = 0; i < 40; i++)
*((double *)array + i) = i + .1;
dims[0] = 2;
dims[1] = 10;
dims[2] = 2;
if(! WSPutReal64Array(lp, (double *)array, (int *)dims, (char **)0, 3))
{ /* unable to send the double array to lp */ }
}