MLReleaseReal32List (C 函数)
MLReleaseReal32List 已经被 WSReleaseReal32List 所取代.
void MLReleaseReal32List(MLINK link,float *a,int n)
释放由 MLGetReal32List() 分配的存储长度为 n 的数组 a 的内存.
范例
基本范例 (1)
#include "mathlink.h"
/* read a list 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 length;
if(! MLGetReal32List(lp, &data, &length))
{ /* unable to read the list of floating-point numbers from lp */ }
/* ... */
MLReleaseReal32List(lp, data, length);
}