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
It would be great if exceptions inside Matlab would somehow propagate to Julia. Right now they might elicit some printout but they are silent otherwise:
using MATLAB
mat"""xxx - 1 % no xxx variable present, the error is silent for Julia$x = 2"""@assert x ==2# clears fine, even though the Matlab code (silently) failed.
The text was updated successfully, but these errors were encountered:
Just discovered your issue comment. I think that might be a cool feature to have. I don't know of any exposed C-API that we could use, but maybe matlab functions like lasterror or MException.last could help.
It would be great if exceptions inside Matlab would somehow propagate to Julia. Right now they might elicit some printout but they are silent otherwise:
The text was updated successfully, but these errors were encountered: