File: addinter.cat

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (31 lines) | stat: -rw-r--r-- 1,241 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
addinter          Scilab Group          Scilab Function            addinter
NAME
   addinter - new functions interface incremental linking at run time
  
CALLING SEQUENCE
 addinter(files,spname,fcts)
PARAMETERS
 files      : a character string or a vector of character string contain
            object files used to define the new Scilab interface routine
            (interface code, user routines or libraries, system libraries).
            
 spname     : a character string. Name of interface routine entry point
            
 fcts       : vector of character strings. The name of new Scilab function
            implemented in the new interface (in  fin  the order ).
            
DESCRIPTION
   addinter performs incremental linking of a compiled C or Fortran new
  Scilab interface routine (see intersci documentation) and define
  corresponding scilab functions. 
  
   For machines using dlopen functionality one can unlink an interface  with
  ulink ( use the command link('show') to get the number  of the shared
  library ). And to reload a new version of an interface a call to ulink is
   necessary to get rid of the old version. 
  
   See link for more precision on use. 
  
SEE ALSO
   link, intersci, newfun, clearfun