WSReleaseReal64List (C Function)
-
See Also
- C Functions
- WSGetReal64List()
- Related Guides
- Tech Notes
-
-
See Also
- C Functions
- WSGetReal64List()
- Related Guides
- Tech Notes
-
See Also
WSReleaseReal64List (C Function)
void WSReleaseReal64List(WSLINK link,double *a,int n)
disowns memory allocated by WSGetReal64List() to store the array a of length n.
Examples
Basic Examples (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);
}
See Also
C Functions: WSGetReal64List()
History
Introduced in 2007 (6.0)