Scilab 5.3.3
- Scilab 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
exists
変数の存在を確認する
呼出し手順
exists(name [,where])
パラメータ
- name
文字列
- where
オプションの文字で,以下の値を指定します:
'l'
(local),'n'
(nolocal) および'a'
(all). デフォルト値は'all'
です.
説明
exists(name)
は,
name
という名前の変数が存在する場合に
1
,それ以外の場合に0
を返します.
注意: exists
を使用する関数は,
環境に依存する結果を返す可能性があります!
exists(name,'local')
は,
name
という名前の変数がカレントの関数の
環境に存在する場合に 1
,
それ以外の場合に 0
を返します.
exists(name,'nolocal')
は,
name
という名前の変数が関数の呼び出し元の
環境(Scilabシェルメインレベルを含む)に存在する場合に 1
,
それ以外の場合に 0
を返します.
警告: exists関数は,ある変数がグローバル 名前空間に存在するかどうかを確認しません.
例
deff('foo(x)',.. ['disp([exists(''a12''),exists(''a12'',''local'')])' 'disp([exists(''x''),exists(''x'',''local'')])']) foo(1) a12=[];foo(1) function level1() function level2() disp(exists("a","all")); disp(exists("a","local")); disp(exists("a","nolocal")); endfunction level2() endfunction function go() a=1; level1() endfunction go()
参照
<< error_table | Scilab | exit >> |