I have a problem with calling julia functions from matlab engine using 
MATLAB.jl <https://github.com/JuliaLang/MATLAB.jl>.


In my project I have specific function which I must call outside of the 
engine.


In the simpliest form this problem can be demonstrated like this:


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


After performing this code I get:

Undefined function or variable 'julia_func'.

How to make this work?


I already posted this to stackoverflow.com 
<http://stackoverflow.com/questions/36832375/how-to-get-access-to-julia-function-calling-it-from-matlab-engine-using-matlab-j>,
 you 
can post your answer there also and i will rate it.  

Reply via email to