return_state_block - return the discrete state of a scicos block
res = return_state_block(Info,name)
- Info :
Info list
- name :
string. the name of the block to find in the Info list
- res :
list of vector of real. vectors containing the content of the discrete state register of the scicos block
function res=return_state_block(Info,name)
n=find_num_block(Info,name);
res=return_state(Info,n);
endfunction
IRCOM Group Alan Layec