How do you open PDF file in MATLAB on a Linux platform?

15 ビュー (過去 30 日間)
David Waters
David Waters 2015 年 2 月 11 日
回答済み: Wendy Fullam 2015 年 6 月 9 日
I ported MATLAB code from Windows 7 to CentOS Linux. The "open(<pdf file path name>);" statement that works fine on a Windows platform didn't work on the Linux platform. I can double click on the PDF file in the CentOS File Browser and it immediately open in a PDF reader. The path is correct and there is no exception thrown. I gave it a bad file name and got a file not found exception.
  1 件のコメント
David Waters
David Waters 2015 年 6 月 5 日
If anybody is interested, the MATLAB open doesn't appear to support PDF files in Linux. I ended up using the CentOS Linux command "evince". Other flavors of Linux may have another command to open PDF files.
if isunix
system(['evince ' help_file_name ' &']);
elseif ispc
open(help_file_name);
else
msgbox(['Open ' help_file_name 'in the operating system'],'Product Help');
end

サインインしてコメントする。

採用された回答

Wendy Fullam
Wendy Fullam 2015 年 6 月 9 日
David answered above: If anybody is interested, the MATLAB open doesn't appear to support PDF files in Linux. I ended up using the CentOS Linux command "evince". Other flavors of Linux may have another command to open PDF files.
if isunix
system(['evince ' help_file_name ' &']);
elseif ispc
open(help_file_name);
else
msgbox(['Open ' help_file_name 'in the operating system'],'Product Help');
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by