Invalid file identifier in Parfor loop

3 views (last 30 days)
xiaohuo
xiaohuo on 10 Mar 2022
Commented: xiaohuo on 11 Mar 2022
How to correct this error when using the parfor loop? Any suggestion to solve this issue? Thanks.
Invalid file identifier. Use fopen to generate a valid file identifier.
filename01 = "D:\...\testParfor"; % filename01 file parth
parfor j = 1:nk2_node
% File path
filename_HD = sprintf('%s%s%d',filename01,"\zone_case0\profile_",j);
Cal_cont = HD_Nod_Inf(filename_HD);
...
end
  9 Comments
xiaohuo
xiaohuo on 11 Mar 2022
Yes, I also think so.
The reason why the code does not work is that the exe fails to run the model. So there is no output values in that file.
Thanks for your help and time.

Sign in to comment.

Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!