return_rpar_block - return real parameters of a scicos block
tt = return_rpar_block(name)
- name : string. the name of the interfacing function of a scicos block (extension free)
- tt : vector of real. the real parameters of the scicos block
function tt=return_rpar_block(name)
//load scicos libraries
load SCI/macros/scicos/lib
//execute define case
ierror=execstr('blk='+name+'(''define'')','errcatch')
if ierror<>0 then
x_message(['Error in case define of GUI function';lasterror()] )
disp(name)
fct=[]
return
end
tt=blk.model.rpar
endfunction
IRCOM Group
Alan Layec