~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/scicos/check_io.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
check_io          Scilab Group          Scicos function            check_io
2
 
NAME
3
 
   check_io - Checks and sets Scicos block port numbers.
4
 
  
5
 
CALLING SEQUENCE
6
 
 [model,graphics,ok]=check_io(model,graphics,in,out,clkin,clkout)
7
 
PARAMETERS
8
 
 model      : Scicos model data structure (see scicos_model)
9
 
            
10
 
 graphics   : Scicos graphics data structure (see scicos_graphics)
11
 
            
12
 
 in         : vector of regular input port sizes. Set in=[] in no regular
13
 
            input port
14
 
            
15
 
 out        : vector of regular output port sizes. Set out=[] in no
16
 
            regular output port
17
 
            
18
 
 clkin      : vector of event input port sizes. Set clkin=[] in no event
19
 
            input port
20
 
            
21
 
 clkout     : vector of event output port sizes. Set clkout=[] in no event
22
 
            output port
23
 
            
24
 
 ok         : boolean, %t if specified input/output have been correctly
25
 
            set. %f if specified input/output cannot be taken into account.
26
 
            
27
 
            
28
 
DESCRIPTION
29
 
   This function is to be called when number of regular or event input or
30
 
  output ports is modified. It check if it is possible (connected ports
31
 
  cannot suppressed) and updates  model and  graphics block substructures. 
32
 
  in, out, clkin, clkout are the vectors of port sizes for respectively the
33
 
  regular inputs, regular outputs, event inputs and event outputs.
34
 
  
35
 
   Negative values in  in or  out vector means that corresponding ports
36
 
  dimension are to be determined by the context. Two equal negative values
37
 
  means that corresponding ports have same size. 
38
 
  
39
 
SEE ALSO
40
 
   scicos_block, scicos_model, scicos_graphics  
41