|
SOLUTIONS
|
MATHEMATICA MATHLINK C FUNCTION
MLPutInteger32List()
int MLPutInteger32List(MLINK link, int *a, int n)
puts a list of n 32-bit integers starting from location a to the MathLink connection specified by link.
DetailsDetails
- MLPutInteger32List() returns 0 in the event of an error, and a nonzero value if the function succeeds.
- Use MLError() to retrieve the error code if MLPutInteger32List() fails.
- MLPutInteger32List() is declared in the MathLink header file mathlink.h.
ExamplesExamplesopen allclose all
Basic Examples (1)Basic Examples (1)
#include "mathlink.h"
/* send a one-dimensional list of 32-bit integers to a link */
void f(MLINK lp)
{
int list[10], i;
for(i = 0; i < 10; i++)
list[i] = i;
if(! MLPutInteger32List(lp, (int *)list, 10))
{ /* unable to send the list to lp */ }
}
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
