|
SOLUTIONS
|
MATHEMATICA MATHLINK C 関数
MLReleaseReal128Array()
void MLReleaseReal128Array(MLINK link, long double *a, int *dims, char **heads, int d)
配列a,その次元dims,そして頭部heads を保持するために,MLGetReal128Array()で割り当てられたメモリを解放する.
詳細詳細
- MLReleaseReal128Array()はMathLink ヘッダファイルmathlink.hの中で宣言される.
例題例題すべて開くすべて閉じる
例 (1)例 (1)
#include "mathlink.h"
/* read an array of extended-precision floating-point numbers from a link and then release the memory to MathLink for deallocation */
void f(MLINK lp)
{
long double *data;
int *dimensions;
char **heads;
int depth;
if(! MLGetReal128Array(lp, &data, &dimensions, &heads))
{ /* Unable to get the array from lp */ }
/* ... */
MLReleaseReal128Array(lp, data, dimensions, heads, depth);
}
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
