필터 지우기
필터 지우기

How to run multiple Matlab (Linux) scripts in other directories?

조회 수: 5 (최근 30일)
Yro
Yro 2022년 4월 8일
답변: Yro 2022년 4월 8일
Hi, I need to run multiple matlab script out of scritp path. I have tried to generate the following bash script using the parallel command:
#!/bin/sh
path=$(echo $HOME/Test/{R1,R2,R3,R4,R5,R6,R7,R8,R9}/TS_version2/run_matlab.sh)
parallel -j0 sh ::: $path
With that script I want to run nine matlab scripts, the bash script is as follows:
#!/bin/sh
matlab -batch "run(fullfile(pwd,'Main.m'))"
The nine directories are well generated, the problem is that the Main.m script is not in the current matlab folder. How can I go to each directory or run the main script from another location?
Thanks in advance.
Kind regards.

채택된 답변

Yro
Yro 2022년 4월 8일
In case you are interested, this line of code worked.
parallel -j0 'cd {//} && sh {/}' ::: $path

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 C Shared Library Integration에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by