MATLAB environment variables
13 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I have a few MATLAB scripts which include the usage of 'matlabfrag' and 'matlabfrag to pdf'. I used them without any problem on my old Ubuntu machine. Now I want to use use them on a MacOS X 10.6 machine and I have the following problem: it seems MATLAB can't find the 'pdflatex'? It is installed on my machine. I got the error message:
/bin/bash: pdflatex: command not found
If I open a terminal I can use 'pdflatex', but not from MATLAB.
I assume it is a problem of setting the environment variables properly. But I don't know how and after one day trying and googleing for answers I hope someone here knows how to do it.
Thank you already in advance, Ralf
0 件のコメント
採用された回答
Ralf
2011 年 2 月 8 日
1 件のコメント
Walter Roberson
2011 年 2 月 8 日
That could be combined in to one:
setenv('PATH', [getenv('PATH') ':/usr/texbin:/usr/local/bin'])
その他の回答 (1 件)
Walter Roberson
2011 年 2 月 4 日
setenv([getenv('PATH') ':/directory/of/pdflatex/']);
This is code to execute inside Matlab before running the script. You could add it to your startup.m file for example.
There are other avenues for making more permanent changes to your OS-X path, such as modifying your ~/.bashrc or ~/.login
3 件のコメント
Walter Roberson
2011 年 2 月 5 日
Sorry, should have been
setenv('PATH', [getenv('PATH') ':/directory/of/pdflatex/']);
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!