필터 지우기
필터 지우기

How to get rid of error C2601?

조회 수: 3 (최근 30일)
Amit Kalhapure
Amit Kalhapure 2012년 7월 21일
I'm encountering few errors listed below. This happens when I try to run cpp code in matlab using mex command.
mesh.cpp(463) : error C2061: syntax error : identifier 'mxArray'
mesh.cpp(466) : error C2601: 'main' : local function definitions are illegal
mesh.cpp(464): this line contains a '{' which has not yet been matched
I'm doing it this way
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
int main(void)
{
<program content>
}
return;
}
Is this the right way of doing it?
Thanks in advance

채택된 답변

Walter Roberson
Walter Roberson 2012년 7월 22일
편집: Walter Roberson 2012년 7월 22일
Are you trying to use lcc to compile your .cpp ? lcc is strictly a C compiler that cannot be used for C++ at all. lcc also only supports the 1989 C standard and not any C introduced after that.
Also, you should not have a routine named "main": MATLAB itself is effectively the main routine. "main" is used strictly to designate the first routine called for an application, and is not used to designate routines called as library functions.
The structure should look similar to
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
<program content>
return;
}
  댓글 수: 2
Amit Kalhapure
Amit Kalhapure 2012년 7월 22일
Walter: Yes it worked. Actually I had a main cpp file and other mutilple cpp files linked to it. I didn't know that we should run all the files with 'mex'. I was trying only main cpp file.
Thanks again.
Walter Roberson
Walter Roberson 2012년 7월 22일
The problem with "const" went away when you removed the nested function?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Write C Functions Callable from MATLAB (MEX Files)에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by