How to code a struct input into the c++ app file for shared library
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre Deploy to C++ Applications Using mwArray API (C++03) en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!