Scilab 5.3.0
- Scilab Online Help
- Scilab
- Scilab keywords
- TMPDIR
- abort
- add_demo
- argn
- banner
- boolean
- break
- clear
- clearfun
- clearglobal
- comp
- continue
- debug
- delbpt
- dispbpt
- edit
- errcatch
- errclear
- error
- error_table
- exists
- exit
- external
- extraction
- format
- funcprot
- funptr
- getdebuginfo
- getmd5
- getmemory
- getmodules
- getos
- getscilabmode
- getshell
- getvariablesonstack
- getversion
- gstacksize
- ieee
- insertion
- intppty
- inv_coeff
- iserror
- isglobal
- lasterror
- macr2lst
- macr2tree
- matrices
- matrix
- mode
- mtlb_mode
- names
- newfun
- null
- pause
- perl
- poly
- predef
- quit
- rational
- readgateway
- resume
- sciargs
- scilab
- setbpt
- sethomedirectory
- stacksize
- startup
- symbols
- testmatrix
- type
- typename
- user
- varn
- ver
- warning
- what
- where
- whereami
- who
- who_user
- whos
- with_atlas
- with_gtk
- with_javasci
- with_macros_source
- with_module
- with_pvm
- with_texmacs
- with_tk
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
funptr
プリミティブのコーディング ( 上級者向け )
呼出し手順
[numptr] = funptr(name)
パラメータ
- name
文字列,プリミティブの名前
- numptr
プリミティブの内部ルーチン番号
説明
プリミティブ'name'
の
内部的なルーチン番号numptr
を取得するためのユーティリティ関数(上級者専用).
numptr
は,インターフェイス番号 fun
および
そのインターフェイス内のプリミティブのルーチン番号 fin
により
numptr = 1000*fun + fin
(fin < 1000) のように計算されます.
numptr
により, インターフェイス番号 fun = floor(numptr/1000)
を得ることができます.
この番号は,参照渡しの引数を有する動的インターフェイスにリンクする際に有用です
(以下の例を参照).
例
// Suppose you want to load some codes via the dynamic // loading facilities offers by addinter. By default // arguments are passed by values but if you want to // pass them by reference you can do the following // (name being the scilab name of one of the interfaced // routines) : // // addinter(files,spnames,fcts) // args passed by values // num_interface = floor(funptr(name)/1000) // intppty(num_interface) // args now passed by reference // // Note that if you enter the following // // intppty() // // you will see all the interfaces working by reference
<< funcprot | Scilab | getdebuginfo >> |