WSGetReal128Array (C Function)
int WSGetReal128Array(WSLINK link, wsextended_double **a,int **dims,char ***heads,int *d)
gets an array of extended-precision floating-point numbers from the WSTP connection specified by link, storing the array in a, its dimensions in dims and its depth in d.
Details
- The array a is laid out in memory like a C array declared as wsextended_double a[m][n]….
- heads gives a list of character strings corresponding to the names of symbols that appear as heads at each level in the array.
- WSGetReal128Array() allocates memory which must be disowned by calling WSReleaseReal128Array(). If WSGetReal128Array() fails and the function's return value indicates an error, do not call WSReleaseReal128Array()on the contents of a.
- WSGetReal128Array() returns immutable data.
- WSGetReal128Array() returns 0 in the event of an error, and a nonzero value if the function succeeds.
- Use WSError() to retrieve the error code if WSGetReal128Array() fails.
- WSGetReal128Array() is declared in the WSTP header file wstp.h.
Examples
Basic Examples (1)
#include "wstp.h"
/* read an array of extended-precision floating-point numbers from a link */
void f(WSLINK lp)
{
wsextended_double *data;
int *dims;
char **heads;
int d;
if(! WSGetReal128Array(lp, &data, &dims, &heads, &d))
{
/* unable to read the array of numbers from lp */
return;
}
/* ... */
WSReleaseReal128Array(lp, data, dims, heads, d);
}