Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

using custom matlab function #192

Open
MarkusZechner opened this issue May 19, 2021 · 1 comment
Open

using custom matlab function #192

MarkusZechner opened this issue May 19, 2021 · 1 comment

Comments

@MarkusZechner
Copy link

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!

@jbarberia
Copy link

My way of working, in case I need to use a matlab function is:

  • Copy the function file in the path/directory where I have julia's session
  • Open the MATLAB session in julia MSession()
  • Create a function that wraps the matlab function. Something like this:
function result(x_pos::Number, y_pos::Number)
x_pos = mxarray(x_pos)
y_pos = mxarray(y_pos)

mat"""
answer = result($x_pos, $y_pos)
"""

@mget(answer)
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants