有没有办法winopen
在 matlab 2010a for mac 上使用或类似的功能?我正在尝试在标准浏览器上打开一个 html 文件。
winopen('myFile.html')
在使用不同 matlab 版本的 windows 上工作正常,但在 mac 上不行。
谢谢。
尝试这个:
system(['open myFile.html']);
来自http://www.mathworks.com/matlabcentral/fileexchange/25080-macopen
..或者
system(['open -a Safari myFile.html']);
尝试这个:
unix('open myFile.html')