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

« back to all changes in this revision

Viewing changes to macros/scicos/scicos_sim.sci

  • 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
function sim=scicos_sim(v1,v2,v3,v4,v5,v6,v7,v8,v9,v10,v11,v12,v13,v14,v15,v16,v17,v18,v19,v20,v21,v22,v23,v24,v25,v26,v27,v28,v29,v30,v31)
 
2
  if exists('funs','local')==0 then funs=[],end
 
3
  if exists('xptr','local')==0 then xptr=[],end
 
4
  if exists('zptr','local')==0 then zptr=[],end
 
5
  if exists('zcptr','local')==0 then zcptr=[],end
 
6
  if exists('inpptr','local')==0 then inpptr=[],end
 
7
  if exists('outptr','local')==0 then outptr=[],end
 
8
  if exists('inplnk','local')==0 then inplnk=[],end
 
9
  if exists('outlnk','local')==0 then outlnk=[],end
 
10
  if exists('lnkptr','local')==0 then lnkptr=[],end
 
11
  if exists('rpar','local')==0 then rpar=[],end
 
12
  if exists('rpptr','local')==0 then rpptr=[],end
 
13
  if exists('ipar','local')==0 then ipar=[],end
 
14
  if exists('ipptr','local')==0 then ipptr=[],end
 
15
  if exists('clkptr','local')==0 then clkptr=[],end
 
16
  if exists('ordptr','local')==0 then ordptr=[],end
 
17
  if exists('execlk','local')==0 then execlk=[],end
 
18
  if exists('ordclk','local')==0 then ordclk=[],end
 
19
  if exists('cord','local')==0 then cord=[],end
 
20
  if exists('oord','local')==0 then oord=[],end
 
21
  if exists('zord','local')==0 then zord=[],end
 
22
  if exists('critev','local')==0 then critev=[],end
 
23
  if exists('nb','local')==0 then nb=[],end
 
24
  if exists('ztyp','local')==0 then ztyp=[],end
 
25
  if exists('nblk','local')==0 then nblk=[],end
 
26
  if exists('ndcblk','local')==0 then ndcblk=[],end
 
27
  if exists('subscr','local')==0 then subscr=[],end
 
28
  if exists('funtyp','local')==0 then funtyp=[],end
 
29
  if exists('iord','local')==0 then iord=[],end
 
30
  if exists('labels','local')==0 then labels=[],end
 
31
  if exists('modptr','local')==0 then modptr=[],end
 
32
  sim=tlist(['scs','funs','xptr','zptr','zcptr','inpptr',..
 
33
             'outptr','inplnk','outlnk','lnkptr','rpar',..
 
34
             'rpptr','ipar','ipptr','clkptr','ordptr',..
 
35
             'execlk','ordclk','cord','oord','zord',..
 
36
             'critev','nb','ztyp','nblk','ndcblk',..
 
37
             'subscr','funtyp','iord','labels','modptr'],..
 
38
            funs,xptr,zptr,zcptr,inpptr,..
 
39
            outptr,inplnk,outlnk,lnkptr,rpar,..
 
40
            rpptr,ipar,ipptr,clkptr,ordptr,..
 
41
            execlk,ordclk,cord,oord,zord,..
 
42
            critev,nb,ztyp,nblk,ndcblk,..
 
43
            subscr,funtyp,iord,labels,modptr)
 
44
  
 
45
endfunction