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

javascript - Feed FileReader from server side files -

How to Change swipe Tab Title color in java Android -

Using globs in Perl replace one liner in TCL script -