Matlab compiler c language error

8 views (last 30 days)
ning zhang
ning zhang on 6 Dec 2017
Commented: Jan on 17 Dec 2017
1.Matlab compiles C language error, but the code should be correct, other people can run successful, report wrong on my computer.Enter this sentence "mex -v -setup",get
2.but when I compile c, I make a mistake.
  4 Comments
ning zhang
ning zhang on 6 Dec 2017

Yes, I used https://github.com/xieyaxiongfly/Atheros-CSI-Tool-UserSpace-APP.

ning zhang
ning zhang on 6 Dec 2017
Yes, I used it. Could you help me? Thank you .

Sign in to comment.

Accepted Answer

Jan
Jan on 6 Dec 2017
Edited: Jan on 6 Dec 2017
read_csi.c line 65:
local_h = mxGetData(prhs[0]);
This does not match to the message "missing ; before type". Therefore there must be another problem. I see this in line 78:
int size[] = {nr, nc, num_tones};
In strict C (to be exact: C89) all variables must be declared before the first command in a [function - wrong, better:] scope block (thanks Walter). But declaring variables inside the code is allowed in C++. So try to rename the file from .c to .cpp and see, if the compilation works then.
If this solves the problem: Let me mention that you would find several corresponding discussions, if you ask an internet search engine for "Matlab Mex missing ; before type".
  10 Comments
Walter Roberson
Walter Roberson on 15 Dec 2017
Edited: Walter Roberson on 15 Dec 2017
When you run code and get the expected answer for a single test, that does not mean that the code is right: it can just mean that you did not happen to encounter the conditions under which the code was wrong.
Also, in C, there are a number of constructs whose meaning is not completely specified by the standards, so the behaviour can depend on the compiler being used and upon the compiler settings, so you can encounter situations in which the behaviour of code changes after a seemingly unrelated compiler or operating system or processor change.
Jan
Jan on 17 Dec 2017
@N Z: There is no reason for being sorry. Asking question is welcome here. I only want to support, that you get the required results in a reliable and trustworthy way. C code is magnitudes more fragile than Matlab code. The missing checks of array limits, the power to use pointers to access everything and low level access to the memory offers a high computational speed and the power to drill a hole in your computer in nano seconds. Code can run "successfully" thousands of times by accident, and fail tremendously in another run.

Sign in to comment.

More Answers (0)

Categories

Find more on COM Component Integration in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!