WSReleaseReal128Array (C 関数)

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

配列a,その次元dims,そして頭部heads を保持するために,WSGetReal128Array()で割り当てられたメモリを解放する.

詳細

  • WSReleaseReal128Array()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (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);
}