Hello everybody!
I build a string for a system call (Matlab) like:
std::string command = "matlab -nosplash -r MyMatlabScript(" + arg1 + " " + arg2 + ");";
The system call is:
system(command.c_str());
However, i get an error, pointing to the first parentheses in my command string.
How can i use a "(" sign in my system call?
Thanks a lot,
#EO