我正在尝试执行以下行
command ='C:\Program Files (x86)\MATLAB\R2010a\bin\matlab -wait -nodesktop -nosplash -r wrapper';
[status, output] = system(command);
但我收到一个错误说:
' 'C:\Program' is not recognized as an internal or external command,
operable program or batch file.'
在我看来,这些空间正在制作错误,如错误所示它只捕获'C:\ Program',所以有人可以建议吗?
答案 0 :(得分:2)
尝试用双引号包装路径..如:
“C:\ Program Files(x86)\ MATLAB ....”