You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes I get this command line output in MATLAB:
Warning: File 'I:\...\Test\parallel\tpfdf378df_8cd6_4c9f_9c19_62abac37695c.mat' not found.
> In quiet_delete (line 4)
In batch_job_collect (line 94)
In batch_job_distrib (line 201)
...
In start (line 12)
Maybe it's helpful to add a try catch block around the delete command in quiet_delete.m
if exist(fname{1}, 'file')
try
delete(fname{1});
catch
end
end
The text was updated successfully, but these errors were encountered:
Sometimes I get this command line output in MATLAB:
Maybe it's helpful to add a try catch block around the delete command in quiet_delete.m
The text was updated successfully, but these errors were encountered: