MLReleaseReal128Array (C Function)

MLReleaseReal128Array has been replaced by WSReleaseReal128Array.

void MLReleaseReal128Array(MLINK link, mlextended_double **a,int **dims,char ***heads,int *d)

disowns the memory allocated by MLGetReal128Array() to store the array a, its dimensions dims, and the heads heads.

Details

  • MLReleaseReal128Array() is declared in the MathLink header file mathlink.h.

Examples

Basic Examples  (1)

#include "mathlink.h"

/* read an array of extended-precision floating-point numbers from a link and then release the memory to MathLink for deallocation */

void f(MLINK lp)
{
    mlextended_double *data;
    int *dimensions;
    char **heads;
    int depth;

    if(! MLGetReal128Array(lp, &data, &dimensions, &heads))
        { /* Unable to get the array from lp */ }

    /* ... */

    MLReleaseReal128Array(lp, data, dimensions, heads, depth);
}