Error message in the console when using batch

24 ビュー (過去 30 日間)
Sandra Martinez
Sandra Martinez 2025 年 2 月 6 日 16:21
回答済み: Edric Ellis 2025 年 2 月 7 日 6:57
Im using batch, where we call the myFUN 30 times (this function procces an image)
for k=1:30
job(nn)=batch(@myFUN,1,{matfiles,k,Parameters,base_folder,saveflag,Plot_Figures},'CaptureDiary',true);
end
In that function I have an error message that tells me that this image could not be processed for some reason
fprintf(fileID,'%s Number of initial sources=0, unprocessed roi\n',Sample.TagName);
How can I make that error message appear in the console when I am using batch?

回答 (2 件)

Walter Roberson
Walter Roberson 2025 年 2 月 6 日 18:09
fetchOutputs() in a try/catch environment. It will succeed if there was no error, and will throw an error if there was an error encountered. Inside the catch block, check the Tasks.Error property of the job; it should be error information.
Tip
To see if any of the tasks on the job j failed after encountering an error, check if j.Tasks.Error is empty. If the returned array is empty, none of the tasks on the job j encountered any errors.
If some tasks completed successfully, you can use the OutputArguments property of a task to access the output arguments of that task directly.
  3 件のコメント
Walter Roberson
Walter Roberson 2025 年 2 月 6 日 20:14
In your catch block detect the particular error() that you emit when the image is not readable. Display the relevant error message. Otherwise display some other error message.
Walter Roberson
Walter Roberson 2025 年 2 月 6 日 21:46
The alternative is to emit the error message as text, and to pick it up by examining the Diary property of the job. However, this will pick up all text emitted. (You could in theory post-process the text picked up from Diary)
There is no "display in console" type of function.
As an alternative, you might consider using parfeval() instead of batch(). Using parfeval() would allow you to construct parallel.pool.DataQueue or parallel.pool.PollableDataQueue objects, which could then be used to send text back to the client .

サインインしてコメントする。


Edric Ellis
Edric Ellis 2025 年 2 月 7 日 6:57
As mentioned by @Walter Roberson you can use the Diary property of the job to view this information. Another (more intrusive) option if you wish is to use ValueStore to record the messages. There's an example on that documentation page showing how a batch job can record progress into the ValueStore, and also how the client can register a callback function that gets called automatically whenever an entry is added to the ValueStore.

タグ

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by