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
是一个表示 MathLink 链接对象的 MathLink 类型.
#include "mathlink.h"int main(int argc, char **argv){ MLENV ep; MLINK lp; long error; ep = MLInitialize((MLEnvironmentParameter)0); if(ep == (MLENV)0) { /* unable to initialize environment */ } lp = MLOpenArgcArgv(ep, argv, argv + argc, &error); if(lp == (MLINK)0 || error != MLEOK) { /* unable to create link */ } /* ... */ MLClose(lp); MLDeinitialize(ep); return 0;}
C 函数: MLENV MLMARK stdlink
1996年引入 (3.0)