Mathematica 9 is now available
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.
Mathematica > MathLink C Language Functions >
MathLink C Function

MLReleaseReal32Array()

void MLReleaseReal32Array(MLINK link, float *a, int *dims, char **heads, int d)
disowns the memory allocated by MLGetReal32Array()to store the array a, its dimensions dims and the heads heads.
  • MLReleaseReal32Array() is declared in the MathLink header file mathlink.h.
#include "mathlink.h"

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

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

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

    /* ... */

    MLReleaseReal32Array(lp, data, dimensions, heads, depth);
}
© 2013 Wolfram Research, Inc. Japanese
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team