フィルターのクリア

How to use a command for the terminal which isn't a standard one?

38 ビュー (過去 30 日間)
Giosuè Basso
Giosuè Basso 2022 年 12 月 16 日
回答済み: MJFcoNaN 2022 年 12 月 18 日
I have to use this line of code which is supposed to generate the image of a graph using GraphViz (which is installed correctly as using the same line on the terminal works):
system('dot -Tpng graph.gv -o Graph.png');
/bin/bash: dot: command not found
but i get the error:
zsh:1: command not found: dot
Is there a way to make it work without using the GraphVIz add on?

採用された回答

MJFcoNaN
MJFcoNaN 2022 年 12 月 18 日
Hello,
'system' starts a new shell process which may not inherit your familiar environment.
I suggest you check the PATH in matlab by
getenv('PATH')
and then try to add some needed paths by setenv, such as
setenv("PATH", [getenv("PATH") ":" "where_is_the_dot_command"]);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDownloads についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by