WSReleaseReal64List (C 関数)

void WSReleaseReal64List(WSLINK link,double *a,int n)

長さn の配列a を保持するために,WSGetReal64List()で割り当てられたメモリを解放する.

詳細

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

例題

  (1)

#include "wstp.h"

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

void f(WSLINK lp)
{
    double *data;
    int length;

    if(! WSGetReal64List(lp, &data, &length))
     { /* unable to read the list of floating-point numbers from lp */ }

    /* ... */

    WSReleaseReal64List(lp, data, length);
}