MLReleaseReal32List (C 関数)
MLReleaseReal32ListはWSReleaseReal32Listに置き換えられた.
void MLReleaseReal32List(MLINK link,float *a,int n)
長さn の配列a を保持するために,MLGetReal32List()で割り当てられたメモリを解放する.
例題
例 (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);
}