Scicos function

curblock - get current block index in a Scicos simulation function

Calling Sequence

k=curblock()

Parameters

Description

During simulation it may be interesting to get the index of the current block to trace execution, to get its label, to animate the block icon according to simulation...

For block with a computational function written in Scilab, Scilab primitive function curblock() allows to get the index of the current block in the compiled data structure.

To obtain path to the block in the Scicos main structure user may uses the corinv table (see scicos_cpr).

For block with a computational function written in C user may uses the C function k=C2F(getcurblock)(). Where C2F is the C compilation macro defined in <SCIDIR>/routines/machine.h

For block with a computational function written in Fortran user may uses the integer function k=getcurblock().

See Also