完整的 Wolfram 语言和笔记本体验
原有的技术计算环境
为您的 Wolfram 体验提供一体化的 AI 协助
更多移动应用程序
我们帮助客户充分发挥计算知识与智能的潜力。
Wolfram 咨询
更多 Wolfram 解决方案
更多教育解决方案
计算机、科学、生活等方面的课程
学习、解决问题、分享想法。
来自 Wolfram 的新闻、观点和见解
资源
WolframConsulting.com
int MLPutInteger64List(MLINK link,mlint64 *a,int n)
把从位置 a 开始的 n 个64位整数列表写入由 link 指定的 MathLink 连接.
#include "mathlink.h"/* send a one-dimensional list of 64-bit integers to a link */void f(MLINK lp){ mlint64 list[10], i; for(i = 0; i < 10; i++) list[i] = i; if(! MLPutInteger64List(lp, (mlint64 *)list, 10)) { /* unable to send the list to lp */ }}
C 函数: MLPutInteger16List() MLPutInteger32List()
2007年引入 (6.0)