Scilab 5.4.0
- Aide Scilab
- Xcos
- Fonctions utilitaires Scilab
- block_parameter_error
- buildouttb
- create_palette
- getModelicaPath
- get_scicos_version
- importXcosDiagram
- loadScicos
- loadXcosLibs
- scicos_debug
- scicos_getvalue
- standard_inputs
- standard_origin
- standard_outputs
- var2vec
- vec2var
- xcosPal
- xcosPalAdd
- xcosPalAddBlock
- xcosPalExport
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
standard_outputs
Get the position of the output ports of a block in Xcos editor.
Calling Sequence
[x,y,typ] = standard_outputs(block)
Arguments
- block
xcos block.
- x
x position of the port. When multiple ports are described,
x
is a float vector of x positions.- y
y position of the port. When multiple ports are described,
y
is a float vector of y positions.- typ
determine the type of ports. It can take the following values:
-1
if this is a clock port;1
if this is an explicit port;2
if this is an implicit port. When multiple ports are described,typ
is a vector.
Description
This Scilab function is used to get the position (x
,y
) of each output port of an Xcos block.
Example
loadXcosLibs(); o1 = DELAYV_f("define"); [x1,y1,typ1] = standard_outputs(o1) o2 = Capacitor("define"); [x2,y2,typ2] = standard_inputs(o2)
See Also
- standard_inputs — Get the position of the input ports of a block in Xcos editor.
- standard_origin — Get the position of a block in the Xcos editor.
Report an issue | ||
<< standard_origin | Fonctions utilitaires Scilab | var2vec >> |