我正在尝试使用 Visual Studio 构建一个 dll,以便可以在 matlab 中使用它......我尝试了 thausand 代码但没有解决方案!我正在研究 matlab 2013(32and64) 和 VS2010 !例如,我尝试以这种方式编写代码...
//The header
#ifndef SIMPLEH_H
#define SIMPLEH_H
#ifdef __cplusplus
extern "C" {
int sq(int x);
#endif
#ifdef __cplusplus
}
#endif
#endif
//the Func(example)
#include "SimpleH.h"
int sq(int x)
{
return (x*x);
}
visual studio 构建它并制作 th dll 文件,但 matlab 总是看不到该功能......我该怎么办 /* 我真的被卡住了 :( */ 提前致谢......