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