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
Post a Comment