有沒有一種方法可以在matlab 2010a for mac上使用winopen
或類似的函數? 我正試圖在標準瀏覽器上打開一個html文件。winopen for mac on matlab
winopen('myFile.html')
可以在使用不同matlab版本的windows上正常工作,但不能在mac上正常工作。
謝謝。
有沒有一種方法可以在matlab 2010a for mac上使用winopen
或類似的函數? 我正試圖在標準瀏覽器上打開一個html文件。winopen for mac on matlab
winopen('myFile.html')
可以在使用不同matlab版本的windows上正常工作,但不能在mac上正常工作。
謝謝。
試試這個:
system(['open myFile.html']);
從http://www.mathworks.com/matlabcentral/fileexchange/25080-macopen
..或
system(['open -a Safari myFile.html']);
從Open Safari with URL from command line and get process handle
你的這個:
聯合國ix('打開myFile.html')
非常感謝! – otmezger
這不適用於avi,例如。在Mathworks中有一個簡單的腳本'macopen',其工作方式類似於winopen。 –