0

当我尝试使用 MATLAB mex 命令编译 ac 文件时,我遇到了以下错误

错误:未知类型名称“mxArray”</p>

错误代码在这里

const char *model_to_matlab_structure(mxArray *plhs[], int num_of_feature, struct svm_model *model);
struct svm_model *matlab_matrix_to_model(const mxArray *matlab_struct, const char **error_message);

我不明白为什么 MATLAB 不能识别 mxArray 类型。我该如何解决这个问题?谢谢!

4

1 回答 1

0

谢谢。原来我忘记了

#include "mex.h"
于 2012-10-30T02:34:24.747 回答