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 -

java - How to create your own button and Use it with Scene Builder for javafx -

c++ - Drawing a circle in directx 9 -