WSReleaseReal128Array (C Function)

void WSReleaseReal128Array(WSLINK link,wstpextended_double *a,int *dims,char **heads,int d)

disowns the memory allocated by WSGetReal128Array() to store the array a, its dimensions dims, and the heads heads.

Details

  • WSReleaseReal128Array() is declared in the WSTP header file wstp.h.

Examples

Basic Examples  (1)

#include "wstp.h"

/* read an array of extended-precision floating-point numbers from a link and then release the memory to WSTP for deallocation */

void f(WSLINK lp)
{
    mlextended_double *data;
    int *dimensions;
    char **heads;
    int depth;

    if(! WSGetReal128Array(lp, &data, &dimensions, &heads))
        { /* Unable to get the array from lp */ }

    /* ... */

    WSReleaseReal128Array(lp, data, dimensions, heads, depth);
}