|
SOLUTIONS
|
MATHEMATICA MATHLINK C FUNCTION
MLDeinitialize()
void MLDeinitialize(MLENV env)
destructs the MathLink environment object.
DetailsDetails
- The MathLink environment object stores the global state of MathLink during the execution of a program.
- MLDeinitialize() must be called before the program exits.
- MLClose() must be called for all open links before calling MLDeinitialize().
- An appropriate call to MLDeinitialize() is generated automatically when an external program is created from MathLink templates.
- MLDeinitialize() is declared in the MathLink header file mathlink.h.
ExamplesExamplesopen allclose all
Basic Examples (1)Basic Examples (1)
#include "mathlink.h"
int main(int argc, char **argv)
{
MLENV ep;
ep = MLInitialize((char *)0);
...
MLDeinitialize(ep);
return 0;
}
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
