How to use a command for the terminal which isn't a standard one?
34 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Giosuè Basso
am 16 Dez. 2022
Beantwortet: MJFcoNaN
am 18 Dez. 2022
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');
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?
0 Kommentare
Akzeptierte Antwort
MJFcoNaN
am 18 Dez. 2022
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Directed Graphs finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!