I am working on converting code from MATLAB to scilab included here.
The @ symbol is used as a memory pointer in MATLAB pointing to the location of the function tst_callback.
Scilab does not like this however. Is there a scilab equivalent for the @?
function test
sysIDgui(@tst_callback)
end
function tst_callback()
disp("Hello Ron")
endfunction