|
SOLUTIONS
|
MATHEMATICA MATHLINK C FUNCTION
MLPutInteger64Array()
DetailsDetails
- The array a must be laid out in memory like a C array declared explicitly as mlint64
. - If heads is given as NULL, the array will be assumed to have head List at every level.
- The length of the array at level i is taken to be
. - MLPutInteger64Array() returns 0 in the event of an error, and a nonzero value if the function succeeds.
- Use MLError() to retrieve the error code if MLPutInteger64Array() fails.
- MLPutInteger64Array() is declared in the MathLink header file mathlink.h.
ExamplesExamplesopen allclose all
Basic Examples (1)Basic Examples (1)
#include "mathlink.h"
/* send an array of 64-bit numbers to a link */
void f(MLINK lp)
{
mlint64 array[2][10][2][5];
int dims[4];
int i;
for(i = 0; i < 200; i++)
{
#if ML64BIT_MATHLINK
/* this machine is a 64-bit machine */
*((mlint64 *)array + i) = i;
#else
/* this machine is a 32-bit machine */
((mlint64 *)array + i)->hi = 0;
((mlint64 *)array + i)->low = i;
#endif
}
dims[0] = 2;
dims[1] = 10;
dims[2] = 2;
dims[3] = 5;
if(! MLPutInteger64Array(lp, (mlint64 *)array, (int *)dims, (char **)0, 4))
{ /* unable to send the array to lp */ }
}
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
