~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/functions/addinter.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
addinter          Scilab Group          Scilab Function            addinter
 
2
NAME
 
3
   addinter - new functions interface incremental linking at run time
 
4
  
 
5
CALLING SEQUENCE
 
6
 addinter(files,spname,fcts)
 
7
PARAMETERS
 
8
 files      : a character string or a vector of character string contain
 
9
            object files used to define the new Scilab interface routine
 
10
            (interface code, user routines or libraries, system libraries).
 
11
            
 
12
 spname     : a character string. Name of interface routine entry point
 
13
            
 
14
 fcts       : vector of character strings. The name of new Scilab function
 
15
            implemented in the new interface (in  fin  the order ).
 
16
            
 
17
DESCRIPTION
 
18
   addinter performs incremental linking of a compiled C or Fortran new
 
19
  Scilab interface routine (see intersci documentation) and define
 
20
  corresponding scilab functions. 
 
21
  
 
22
   For machines using dlopen functionality one can unlink an interface  with
 
23
  ulink ( use the command link('show') to get the number  of the shared
 
24
  library ). And to reload a new version of an interface a call to ulink is
 
25
   necessary to get rid of the old version. 
 
26
  
 
27
   See link for more precision on use. 
 
28
  
 
29
SEE ALSO
 
30
   link, intersci, newfun, clearfun 
 
31