MLPutInteger32List (C Function)

MLPutInteger32List has been replaced by WSPutInteger32List.

int MLPutInteger32List(MLINK link,const int *a,int n)

puts a list of 32-bit integers starting from location to the MathLink connection specified by .

Details

  • 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.

Examples

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 */ }
}