WSReleaseReal64Array (C Function)
void WSReleaseReal64Array(WSLINK link,double *a,int *dims,char **heads,int d)
disowns memory allocated by WSGetReal64Array() to store the array a, its dimensions dims and the heads heads.
Examples
Basic Examples (1)
#include "wstp.h"
/* read an array of double-precision floating-point numbers from a link and then release the memory to WSTP for deallocation */
void f(WSLINK lp)
{
double *data;
int *dimensions;
char **heads;
int depth;
if(! WSGetReal64Array(lp, &data, &dimensions, &heads))
{ /* unable to read the floating-point number array from lp */ }
/* ... */
WSReleaseReal64Array(lp, data, dimensions, heads, depth);
}