How to get access to Julia function calling it from matlab engine using MATLAB.jl -


i have problem calling julia functions matlab engine using matlab.jl.

in project have specific function must call outside of engine.

in simpliest form problem can demonstrated this:

using matlab  function julia_func(arg::integer)   return arg end  @matlab begin   ans = exp(julia_func(3)) end  @mget ans @show ans 

after performing code get:

undefined function or variable 'julia_func'.

how make work?


Comments

Popular posts from this blog

Load Balancing in Bluemix using custom domain and DNS SRV records -

oracle - pls-00402 alias required in select list of cursor to avoid duplicate column names -

python - Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>] error -