WSReleaseReal32List (C Function)
void WSReleaseReal32List(WSLINK link,float *a,int n)
disowns memory allocated by WSGetReal32List() to store the array a of length n.
Examples
Basic Examples (1)
#include "wstp.h"
/* read a list of single-precision floating-point numbers from a link and then release the memory to WSTP for deallocation */
void f(WSLINK lp)
{
float *data;
int length;
if(! WSGetReal32List(lp, &data, &length))
{ /* unable to read the list of floating-point numbers from lp */ }
/* ... */
WSReleaseReal32List(lp, data, length);
}