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
I should be using something like this instead (thanks Zebb):
try
fh = fopen([p.Results.filename,'.eps'],'w');
fwrite(fh,epsfile);
fclose(fh);
catch %#ok -- this is required for r2007a support
err = lasterror; %#ok
if fh > 0
fclose(fh);
end
rethrow( err );
end
The text was updated successfully, but these errors were encountered:
I should be using something like this instead (thanks Zebb):
The text was updated successfully, but these errors were encountered: