Get the position of the output ports of a block in Xcos editor.
[x,y,typ] = standard_outputs(block)
:block xcos block. : :x x position of the port. When multiple ports are described, x is
a float vector of x positions.
:
This Scilab function is used to get the position ( x, y) of each output port of an Xcos block.
`loadXcosLibs`_();
o1 = DELAYV_f("define");
[x1,y1,typ1] = standard_outputs(o1)
o2 = Capacitor("define");
[x2,y2,typ2] = standard_inputs(o2)