|
SOLUTIONS
|
MATHEMATICA MATHLINK C 函数
MLReleaseInteger16List()
void MLReleaseInteger16List(MLINK link, short *a, int n)
释放由 MLGetInteger16List() 分配的存储长度为 n 的数组 a 的内存.
更多信息更多信息
- MLReleaseInteger16List() 在 MathLink 标头文件 mathlink.h 中被声明.
范例范例打开所有单元关闭所有单元
基本范例 (1)基本范例 (1)
#include "mathlink.h"
/* read a list of 16-bit integers from a link and then release the memory to MathLink for deallocation */
void f(MLINK lp)
{
short *data;
int length;
if(! MLGetInteger16List(lp, &data, &length))
{ /* unable to read the list of integers from lp */ }
/* ... */
MLReleaseInteger16List(lp, data, length);
}
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
