MLReleaseReal64Array (C 関数)

MLReleaseReal64ArrayWSReleaseReal64Arrayに置き換えられた.

void MLReleaseReal64Array(MLINK link,double *a,int *dims,char **heads,int d)

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

詳細

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

例題

  (1)

#include "mathlink.h"

/* read an array 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 *dimensions;
    char **heads;
    int depth;

    if(! MLGetReal64Array(lp, &data, &dimensions, &heads))
     { /* unable to read the floating-point number array from lp */ }

    /* ... */

    MLReleaseReal64Array(lp, data, dimensions, heads, depth);
}