return the pointer or the structure of C structure in C mex file
3 ビュー (過去 30 日間)
古いコメントを表示
Hi
I have a C function inside a mex file that return a large structure ( 110 fields ), and I want to return this structure to matlab , so , my question is how to copy or to return the pointer of the C structure to Matlab ?
thanks in advance
0 件のコメント
回答 (1 件)
Guillaume
2015 年 3 月 2 日
You can't, matlab does not understand C structures. You'll have to convert your structure to a matlab structure (which is a very different beast). See mxcreatestructarray and mxsetfield to create matlab structs.
3 件のコメント
Guillaume
2015 年 3 月 2 日
Unless all the fields are the same type, I don't see any other way but to copy each field one by one I'm afraid.
参考
カテゴリ
Help Center および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!