MLPutReal128List (C Function)

MLPutReal128List has been replaced by WSPutReal128List.

int MLPutReal128List(MLINK link,const mlextended_double *a,int n)

puts a list of n extended-precision floating-point numbers starting from location a to the MathLink connection specified by link.

Details

  • MLPutReal128List() returns 0 in the event of an error, and a nonzero value if the function succeeds.
  • Use MLError() to retrieve the error code if MLPutReal128List() fails.
  • MLPutReal128List() is declared in the MathLink header file mathlink.h.

Examples

Basic Examples  (1)

#include "mathlink.h"

/* send a list of extended-precision floating-point numbers to a link */

void f(MLINK lp)
{
    mlextended_double list[20];
    int i;

    for(i = 0; i < 20; i++)
        list[i] = i + .9;

    if(! MLPutReal128List(lp, (mlextended_double *)list, 20))
        { /* unable to put the list to lp */ }
}