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
The issue is that this is not valid MATLAB code that can be executed in the MATLAB command window. The approach from @jbarberia should work. Alternatively you can run addpath in MATLAB to add other directories with matlab code, e.g.
I am trying to use a custom matlab function in julia but I am getting an error.
I tried to do the following:
mat"""
function [result] = run(x_pos, y_pos)
result = x_pos + y_pos;
end
"""
but I am getting this error:
Error: Function definition not supported in this context. Create functions in code file.
Unrecognized function or variable 'x_pos'.
end;
|
Error: Illegal use of reserved keyword "end".
How can I use a custom matlab function in julia?
Thanks a lot!
The text was updated successfully, but these errors were encountered: