|
SOLUTIONS
|
MLReleaseInteger32List()
void MLReleaseInteger32List(MLINK link, int *a, int n)
長さn の配列a を保持するために,MLGetInteger32List()で割り当てられたメモリを解放する.
詳細詳細
- MLReleaseInteger32List()はMathLink ヘッダファイルmathlink.hの中で宣言される.
例題例題すべて開くすべて閉じる
例 (1)例 (1)
#include "mathlink.h"
/* read a list of 32-bit integers from a link and then release the memory to MathLink for deallocation */
void f(MLINK lp)
{
int *data;
int length;
if(! MLGetInteger32List(lp, &data, &length))
{ /* unable to read the list of integers from lp */ }
/* ... */
MLReleaseInteger32List(lp, data, length);
}
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
