Scilab
Posts  1 - 1  of  1
hilife5
I want to know, is there exist any functions in scilab which can provide the information of scilab script file.
function1.sci is a script file and content of this script file is given below

function y = function1 ( x )
y = 1 * function1_support ( x )
endfunction
function y = function1_support ( x )
y = 3 * x
endfunction

After loading the file using .net application then i want to know, is there any scilab function exist for getting the information like function name, input parameter name and output parameter.

.net code for executing the script file is as follows

obj1.SendScilabJob("exec('scriptpath')")



Save
Cancel
Reply
 
x
OK