MLReleaseReal64List (C 関数)

MLReleaseReal64ListWSReleaseReal64Listに置き換えられた.

void MLReleaseReal64List(MLINK link,double *a,int n)

長さn の配列a を保持するために,MLGetReal64List()で割り当てられたメモリを解放する.

詳細

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

例題

  (1)

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