Mathematica > Systems Interfaces & Deployment > C/C++ Language Interface > MathLink C Language Functions >
Mathematica > Systems Interfaces & Deployment > MathLink API > MathLink C Language Functions >
MathLink C Function

MLReleaseReal64List()

void MLReleaseReal64List(MLINK link, double *a, int n)
disowns memory allocated by MLGetReal64List() to store the array a of length n.
  • MLReleaseReal64List() is declared in the MathLink header file mathlink.h.
#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);
}
© 2008 Wolfram Research, Inc.
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team