Matlab compiler c language error
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Jan
am 6 Dez. 2017
Bearbeitet: Jan
am 6 Dez. 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 Kommentare
Walter Roberson
am 15 Dez. 2017
Bearbeitet: Walter Roberson
am 15 Dez. 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
am 17 Dez. 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.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu COM Component Integration finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
