Matlab错误中带空格的路径

时间:2014-02-16 05:26:34

标签: matlab matlab-compiler

我正在尝试执行以下行

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',所以有人可以建议吗?

1 个答案:

答案 0 :(得分:2)

尝试用双引号包装路径..如:

“C:\ Program Files(x86)\ MATLAB ....”