How to code a struct input into the c++ app file for shared library
显示 更早的评论
Input to my function is a structure with fields filename (string type) and fft (double). I have followed the MWStructExample.cpp (phonebook example). Please guide as to how it should be further coded. I doubt the syntaxing is wrong somewhere.
const char *input[] = {"filename", "fft"};
mwSize dims[2] = {1, NUMBER_OF_STRUCTS };
mwArray stru(2,dims, 2, input);
mwArray filename(m, n, mxDOUBLE_CLASS);
mwArray fft(1, 1, mxDOUBLE_CLASS);
stru.Get(input[0],1,1).Set(filename);
stru.Get(input[1],1,1).Set(fft);
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Deploy to C++ Applications Using mwArray API (C++03) 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!