WSPutInteger32Array (C 関数)
int WSPutInteger32Array(WSLINK link,const int *a,const int *dims,const char **heads,int d)
32ビットの整数の配列を で指定されたWSTP接続に置いて,次元が で深さが の配列を形成する.
例題
例 (1)
#include "wstp.h"
/* send an array of 32-bit integers to a link */
void f(WSLINK lp)
{
int array[6][10][2][1];
int dims[4];
int i;
for(i = 0; i < 120; i++)
*((int *)array + i) = i;
dims[0] = 6;
dims[1] = 10;
dims[2] = 2;
dims[3] = 1;
if(! WSPutInteger32Array(lp, (int *)array, (int *)dims, (char **)0, 4))
{ /* unable to send the array to lp */ }
}