system command error within a parfor

Hi all,
I'm getting this error when runnning the code below. I isolated the issue to the use of the system command within the parfor loop. Note however that the same exact code runs fine on another -windows- PC.
Error Identifier: MATLAB:parallel:future:FetchNextFutureErrored
Error Message: The function evaluation completed with an error.
parfor ......
.....
command = ...;
system(command);
end

댓글 수: 2

Rik
Rik 2026년 3월 19일
Does that other Windows PC also have the parallel computing toolbox? Because without that toolbox, parfor loops are treated as normal for loops, which avoids a lot of issues.
Ahmed Elkady
Ahmed Elkady 2026년 3월 19일
Both PCs have the parallel computing toolbox. The only diffference, other than the hardware, is that one has R2023a (not working) and the other R2023b (working)

댓글을 달려면 로그인하십시오.

답변 (1개)

Ritam
Ritam 2026년 4월 13일 9:57

0 개 추천

Sometimes, if there are any installation-related issues, reinstalling the Parallel Computing Toolbox may help resolve the problem.
Additionally, resetting the MATLAB search path and rehashing the toolbox cache can be helpful. This can be done by running the following commands:
restoredefaultpath
rehash toolboxcache
savepath
Before running these commands, it is recommended to make a backup copy of the "pathdef.m" file. The location of this file can be identified using the following command:
which -all pathdef

댓글 수: 2

Ahmed Elkady
Ahmed Elkady 2026년 4월 16일 11:14
이동: Stephen23 2026년 4월 16일 11:53
Thank you for the suggestion. I tried it but the issue still persist.
Ritam
Ritam 2026년 4월 16일 11:35
이동: Stephen23 2026년 4월 16일 11:53
Then, I will suggest you to reach out to MathWorks Technical Support. They will be able to resolve your issue faster.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Parallel for-Loops (parfor)에 대해 자세히 알아보기

제품

릴리스

R2023a

질문:

2026년 3월 19일

이동:

2026년 4월 16일 11:53

Community Treasure Hunt

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

Start Hunting!

Translated by