winopen
Mac用のMATLAB2010aで使用する方法または同様の機能はありますか?標準のブラウザで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']);
コマンドラインからURLを使用してSafariを開き、プロセスハンドルを取得します
これを試して:
unix('open myFile.html')