Accessing elements in an mxArray

16 次查看(过去 30 天)
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!

采纳的回答

James Tursa
James Tursa 2013-7-24
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 个评论
James Tursa
James Tursa 2013-7-25
编辑:James Tursa 2013-7-25
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
}
Caroline
Caroline 2013-7-26
Thank you so much for your help!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Call C++ from MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by