MLReleaseReal64List (C Function)

MLReleaseReal64List has been replaced by WSReleaseReal64List.

void MLReleaseReal64List(MLINK link,double *a,int n)

disowns memory allocated by MLGetReal64List() to store the array a of length n.

Details

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

Examples

Basic Examples  (1)

#include "mathlink.h"

/* read a list 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 length;

    if(! MLGetReal64List(lp, &data, &length))
     { /* unable to read the list of floating-point numbers from lp */ }

    /* ... */

    MLReleaseReal64List(lp, data, length);
}