|
SOLUTIONS
|
MATHEMATICA MATHLINK C FUNCTION
MLFromLinkID()
DetailsDetails
- If no link object in the environment env has the ID number inumb, MLFromLinkID() returns (MLINK)0.
- MLFromLinkID() is declared in the MathLink header file mathlink.h.
ExamplesExamplesopen allclose all
Basic Examples (1)Basic Examples (1)
#include "mathlink.h"
/* read data from the link represented by id */
void f(MLENV env, long id)
{
MLINK lp;
lp = MLFromLinkID(env, id);
if(lp == (MLINK)0)
{ /* unable to get the link from the id number */ }
/* determine the type of data on lp */
switch(MLGetNext(lp))
{
/* ... */
}
/* ... */
}
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
