Scilab 5.3.3
- Scilab help
- Elementary Functions
- bitwise
- Complex
- Discrete mathematics
- elementarymatrices
- Floating point
- Integer representation
- matrixmanipulation
- matrixoperations
- searchandsort
- setoperations
- signalprocessing
- symbolic
- Trigonometry
- abs
- amell
- and
- &
- cat
- cell2mat
- cellstr
- char
- delip
- diff
- exp
- inttrap
- isdef
- isempty
- isequal
- isequalbitwise
- isvector
- log
- log10
- log1p
- log2
- logm
- lstsize
- max
- maxi
- min
- mini
- modulo
- ndims
- norm
- or
- |
- pertrans
- sign
- signm
- size
- sort
- sqrt
- sqrtm
- squarewave
- toeplitz
- typeof
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
isdef
変数の存在を確認
呼び出し手順
isdef(name [,where])
パラメータ
- name
文字列
- where
オプションのパラメータ文字列, デフォルト値は
'all'
説明
isdef(name)
は,
name
という名前の変数が存在する場合に
%T
, それ以外の場合に %F
を返します.
注意: isdef
を使用する関数
は環境に依存した結果を返す可能性があります!
isdef(name,'local')
は,
name
という名前の変数がカレントの関数のローカル環境に
存在する場合に %T
, それ以外の場合に %F
を返します.
isdef(name,'nolocal')
は,
name
という名前の変数が(グローバルレベルを含む)呼び出した側の環境に
存在する場合に %T
,
それ以外の場合に %F
を返します.
例
参照
<< inttrap | Elementary Functions | isempty >> |