MLReleaseReal64Array (C 函数)

MLReleaseReal64Array 已经被 WSReleaseReal64Array 所取代.

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

释放由 MLGetReal64Array() 分配的存储维数为 dims 和标头为 heads 的数组 a 的内存.

更多信息

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