Accessing elements in an mxArray

I am using the MATLAB engine to read a excel file using C++. I am trying to access elements in an mxArray that was created using engEvalString and xlsread, they were used in the following way:
mxArray *num;
mxArray *text;
mxArray *raw;
engEvalString(ep, "[num, text, raw] = xlsread('C:\\rest_of_file_path')")
However, now I am trying to access the elements of raw by using mxGetCell(*mxArray, int ind). I know that this returns a pointer to the cell with the index ind.I used mxGetCell in the following way (dereference the pointer to return the actual value in the cell with the specified index) :
cout << *mxGetCell(num, 40) << endl;
but I got the following error:
binary '<<': no operator found which takes right-hand operand of type 'mxArray' (or there is no acceptable conversion).
The right hand operator shouldn't be an mxArray, shouldn't it be a number? What is wrong with they way I am dereferencing the pointer? How could I get the values in the mxArray?
Any help that anyone could provide would be much appreciated.
Thanks!

 Accepted Answer

mxGetCell(num, 40) returns an (mxArray *), i.e. a pointer to an mxArray. Thus, by extension, *mxGetCell(num, 40) deferences that pointer into an mxArray. Hence the error message you are seeing. Each "element" of a cell array is an (mxArray *). You need to get at the data of the underlying mxArray. E.g.,
cout << *mxGetPr(mxGetCell(num, 40)) << endl;

3 Comments

Thank you for answering me! The cell array that I am looking at contains both strings and numbers, but when I try use cout on a cell that contains a string the output is a number. For example if num(1) is a string and I use the following cout statement:
cout << *mxGetPr(mxGetCell(num, 1)) << endl;
I get the following output: 2.56765e-312
Do you know why this could be happening?
Thanks again!
Since you have both that you need to deal with and you won't know until runtime what you have, you will need to wrap some logic around your output statement. E.g., something like this
char *cp;
mxArray *cell;
:
cell = mxGetCell(num,1);
if( cell == NULL ) {
; // Do nothing this branch since there is nothing in the cell
} else if( mxIsChar(cell) ) {
cp = mxArrayToString(cell); // MATLAB char array to C-style string
cout << cp << endl;
mxFree(cp); // Free the dynamically allocated C-style string
} else {
cout << *mxGetPr(cell) << endl; // Assume mxArray is double
}
Thank you so much for your help!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!