How to send vector of string to MATLAB compiled DLLs, using mwArray?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Abhay Prakash
am 26 Feb. 2016
Beantwortet: Guillaume
am 26 Feb. 2016
Page at mwArray class describes about constructor to create a mwArray cell of array of string as: mwArray(mwSize num_strings, const char** str).
I have a vector of string which has been dynamically populated. I have converted vector<string> to char** and trying to make mwArray with this data. However, the constructor signature has const char**, so it is failing to convert char** to const char**
How else a vector of string can be set to a mwArray cell and sent to MATLAB DLLs?
0 Kommentare
Akzeptierte Antwort
Guillaume
am 26 Feb. 2016
Yes, C++ will not let you convert T** to const T**. While you probably could use an explicit cast, the best solution is to change your conversion from vector<string> so that it outputs directly const char**.
You must actually have purposefully cast away the constness of const char* returned by string.c_str, so don't do that!
std::vector<std::string> strings { "one", "two", "three"};
std::vector<const char*> cstrings;
for (size_t i = 0; i < strings.size(); ++i)
cstrings.push_back(strings[i].c_str()); \\convert string to const char*
mwArray mstrings(cstrings.size(), cstrings.data()); \\cstrings.data() is const char**
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Deploy to C++ Applications Using mwArray API (C++03) finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!