The definitive Wolfram Language and notebook experience
The original technical computing environment
All-in-one AI assistance for your Wolfram experience
More mobile apps
We deliver solutions for the AI era—combining symbolic computation, data-driven insights and deep technical expertise
WolframConsulting.com
More Wolfram Solutions
More Solutions for Education
Courses in computing, science, life and more
Learn, solve problems and share ideas.
News, views and insights from Wolfram
Resources for
void MLReleaseInteger32List(MLINK link,int *a,int n)
長さn の配列a を保持するために,MLGetInteger32List()で割り当てられたメモリを解放する.
#include "mathlink.h"/* read a list of 32-bit integers from a link and then release the memory to MathLink for deallocation */void f(MLINK lp){ int *data; int length; if(! MLGetInteger32List(lp, &data, &length)) { /* unable to read the list of integers from lp */ } /* ... */ MLReleaseInteger32List(lp, data, length);}
C関数: MLGetInteger32List()
2007 で導入 (6.0)