How to define the output path of THE "system" command
4 次查看(过去 30 天)
显示 更早的评论
Hi all,
I use Matlab script to call Abaqus. The command I use is:
system('/home/xiaohan/abaqus/6.14-1/code/bin/abq6141 noGUI job=L2H1_dynamics inp=/home/xiaohan/AbaqusModels/L2H1_dynamics.inp interactive ask_delete=OFF')
This command runs completely fine, but the outputs exist in current Matlab path, which is not the location I want to store the outputs. So my question is, when using the "system" command, how can I specify the output location (like I did when specify the location of the Abaqus job?)?
9 个评论
Geoff Hayes
2018-3-6
you could add some MATLAB code to move those files from the current working directory to some pre-defined location (if you know which files to move and to where). that way you don't have to really care about where you are executing the code from.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!