MLReleaseReal32Array (C 関数)

MLReleaseReal32ArrayWSReleaseReal32Arrayに置き換えられた.

void MLReleaseReal32Array(MLINK link,float *a,int *dims,char **heads,int d)

配列a,その次元dims ,そして頭部heads を保持するために, MLGetReal32Array()で割り当てられたメモリを解放する.

詳細

  • MLReleaseReal32Array()は,MathLinkヘッダファイルmathlink.hの中で宣言される.

例題

  (1)

#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);
}