MEX passing Integer - wrong results

8 visualizaciones (últimos 30 días)
mbvoyager
mbvoyager el 14 de Nov. de 2017
Editada: Jan el 13 de Nov. de 2019
Hello,
I have a C++ code that I try to embed in Matlab using a mex function. Everything worked just fine, till I tried to hand over integers from Matlab.
Suppose I call my Mex function like:
myMexFun(0.1, 0.1, 30, 4000);
Apparently it makes a difference if I use: (1)
int a = (int)*mxGetPr(prhs[3]);
instead of defining it directly in my C++ code with: (2)
int a = 4000;
Since the first (1) expression will yield very far off wrong results.
a is used for all calculating operations (+,-,*,/) as well as an index for arrays.
Additionally I am doing the very same thing with a smaller integer for another parameter prhs[2] - (range 5-150) and with this input I do not get any issues.
What am I overseeing here?
Kind regards, and thanks for your time.
  2 comentarios
Jan
Jan el 14 de Nov. de 2017
Please post the relevant part of the code. Especially a description like "I am doing the very same thing with a smaller integer" is not useful to reconsider, what the problem is.
int a
a = (int) *mxGetPr(prhs[3]);
Should work. I'd prefer:
a = (int) mxGetScalar(prhs[0]);
because then you can use inputs of any type also. Perhaps the 4000 you are providing is a int32 in Matlab?
mbvoyager
mbvoyager el 14 de Nov. de 2017
Editada: mbvoyager el 14 de Nov. de 2017
The problem looks like this:
a=4000;
b=30;
myMexFun(0.1, 0.1, b, a);
What works totally fine is:
int b = (int)*mxGetPr(prhs[2]);
But what yields wrong results if I implement it is:
int a = (int)*mxGetPr(prhs[3]);
The changes you suggested yield the same results.
b and a are part of numerous calculations with all operands as well as used for indices, also they are casted to doubles. With the Number b I have no issues, all results are fine. But when I use the second integer input a and try to hand it over from matlab, results get messy. The double values are also not causing any damage.
I also cleared the memory and everything in between different runs, but the problem still persists.
Also if I write something like:
a = int32(4000);
Matlab just crashes during the C++ function.
Thank you for your time.

Iniciar sesión para comentar.

Respuestas (2)

Jan
Jan el 14 de Nov. de 2017
Editada: Jan el 13 de Nov. de 2019
This sounds magic. Whenever magic things appear in discussions in the forum, or at programming in general, it is a secure signal, that the author has overseen an important detail. To find the source of the problem, create a MWE: Minimal working example.
#include "mex.h"
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) {
int a = (int) *mxGetPr(prhs[3]); // Better: *mxGetData(prhs[3])
mexPrintf("%i\n", a);
mexPrintf("%g\n", (double) a);
mexPrintf("%g\n", mxGetScalar(prhs[3]));
}
Try it. I expect, that the correct values are displayed. This would mean, that perhaps your observation is wrong: How do you find out, that the value of a differs from your expectations? Maybe this test is the only problem.
  3 comentarios
mbvoyager
mbvoyager el 29 de Ag. de 2018
Editada: mbvoyager el 29 de Ag. de 2018
Aloha lei,
first of all, I still don't have the final solution but I am coming closer to it. I guess/hope.
It looks like I was using different compiler versions. A few weeks ago I started upgrading all my code and the compiler to the Visual Studio 2017 C++ compiler in order to be able to use the Visual Studio IDE for my Mex-Function debugging.
I notice that some initialization behaviour of arrays has changed.
So far it looks like that sometimes an initialized array, contained weird values. Which makes sense in C++.
But sometimes those arrays weren't fully filled with new values and so the code accessed those weird values.
Additionally, with the new compiler version, I get the error that some integers which I am passing through the Matlab mex function are not constant and therefore not usable as array size declarators. This leads right back to the lines where I am actually saving the passed values using the mex arrays.
double Threshold = mxGetScalar(prhs[0]);
double deltat = mxGetScalar(prhs[1]);
int BoundN = (int)*mxGetPr(prhs[2]);
This is exactly the line which I've mentioned at the beginning of this thread. But now I get the error message that BoundN needs to be constant. The mxArray prhs[], in fact, is constant which can be seen here
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
but the value passed from calling my Mex-Function seems to be not.
If I delete the assignment and declare the value BoundN "manually"
const int BoundN = 120;
The compiler throws no errors.
I can not declare BoundN as const in the assignment because the value out of *prhs[] is not constant.
I am considering now two things.
  1. Don't pass BoundN, which is a solution I could live with but certainly is not very nice.
  2. Use std::vector and try where I can get with it.
So probably this magic that happened is because of the different compilers I've used (I've used also different Matlab versions) and also a bunch of errors that I've not identified yet.
Because on another machine sometimes the code works fine and also new changes and compilations work fine. But it's like 1 out of 10....
Jan
Jan el 29 de Ag. de 2018
In your former comment (link) you write: "Which is wrong!" I still do not have any idea about what you consider as wrong here. Without seeing the code, it is impossible to find the cause of the problem. Therefore I can only guess, that an uninitialized pointer is used anywhere.
"sometimes those arrays weren't fully filled with new values" - please elaborate this.
"with the new compiler version, I get the error that some integers which I am passing through the Matlab mex function are not constant" - Please post the specific line and a copy of the error message. The problem is not, that the integer is not constant, but that the variable is not declared as const. So what about casting it to const?

Iniciar sesión para comentar.


Nope
Nope el 13 de Nov. de 2019
From what I understand, mxGetPr() always returns the pointer as type mxDOUBLE_CLASS*. If you pass an integer the typecasting in this line:
const int a = (int)*mxGetPr(prhs[3]);
should interpret your integer as a double and then convert that interpretation to an integer.

Categorías

Más información sobre Write C Functions Callable from MATLAB (MEX Files) en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by