Scilab 6.0.0
      
      - Ajuda do Scilab
 - Xcos
 - scilab_utilities_functions
 - block_parameter_error
 - buildouttb
 - getModelicaPath
 - importXcosDiagram
 - loadScicos
 - loadXcosLibs
 - %MODELICA_USER_LIBS
 - scicos_debug
 - scicos_getvalue
 - scicos_log
 - scicosDiagramToScilab
 - standard_inputs
 - standard_origin
 - standard_outputs
 - var2vec
 - vec2var
 - xcosAddToolsMenu
 - xcosDiagramToScilab
 - xcosPal
 - xcosPalAdd
 - xcosPalAddBlock
 - xcosPalDelete
 - xcosPalExport
 - xcosPalGenerateAllIcons
 - xcosPalMove
 - xcosUpdateBlock
 
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
standard_inputs
Get the position of the input ports of a block in Xcos editor.
Syntax
[x,y,typ] = standard_inputs(block)
Arguments
- block
 xcos block.
- x
 x position of the port. When multiple ports are described,
xis a float vector of x positions.- y
 y position of the port. When multiple ports are described,
yis a float vector of y positions.- typ
 determine the type of ports. It can take the following values:
-1if this is a clock port;1if this is an explicit port;2if this is an implicit port. When multiple ports are described,typis a vector.
Description
This Scilab function was used by the Scicos blocks interfacing functions
            to get the position (x, y) of each input port.
![]()  | This function is not useful for Xcos block interfacing functions anymore.
                The Xcos interfacing functions are not called with  job="getorigin" anymore. | 
Example
loadXcosLibs(); o1 = CSCOPE("define"); [x1,y1,typ1] = standard_inputs(o1) o2 = Capacitor("define"); [x2,y2,typ2] = standard_inputs(o2)
See also
- standard_outputs — Get the position of the output ports of a block in Xcos editor.
 - standard_origin — Get the position of a block in the Xcos editor.
 
| Report an issue | ||
| << scicosDiagramToScilab | scilab_utilities_functions | standard_origin >> | 
