MLGetRealList()
Usage
• int MLGetRealList(MLINK link, double **a, long *n) gets a list of floating-point numbers from the MathLink connection specified by link, storing the numbers in the array a and the length of the list in n.
Notes
• MLGetRealList() allocates memory for the array of numbers. You must call MLDisownRealList() to disown this memory. • External programs should not modify the array generated by MLGetRealList(). • See notes for MLGetReal(). • See Section 2.13.4.
|