|
SOLUTIONS
|
MATHEMATICA MATHLINK C FUNCTION
MLReleaseInteger64List()
void MLReleaseInteger64List(MLINK link, mlint64 *a, int n)
disowns memory allocated by MLGetInteger64List() to store the array a of length n.
DetailsDetails
- MLReleaseInteger64List() is declared in the MathLink header file mathlink.h.
ExamplesExamplesopen allclose all
Basic Examples (1)Basic Examples (1)
#include "mathlink.h"
/* read a list of 64-bit integers from a link and then release the memory to MathLink for deallocation */
void f(MLINK lp)
{
mlint64 *data;
int length;
if(! MLGetInteger64List(lp, &data, &length))
{ /* unable to read the list of integers from lp */ }
/* ... */
MLReleaseInteger64List(lp, data, length);
}
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
