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