File: addinter.cat

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (30 lines) | stat: -rw-r--r-- 1,185 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

addinter(1)                    Scilab Function                    addinter(1)
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