Scilab 5.3.0
- Scilab Online Help
- Elementary Functions
- Discrete mathematics
- Floating point
- Integer representation
- Trigonometry
- abs
- amell
- and
- &
- binomial
- bitand
- bitor
- bloc2exp
- bloc2ss
- cat
- cell2mat
- cellstr
- char
- cumprod
- cumsum
- delip
- diag
- diff
- dsearch
- exp
- eye
- flipdim
- gsort
- imag
- imult
- ind2sub
- intersect
- inttrap
- isdef
- isempty
- isequal
- isequalbitwise
- isreal
- isvector
- kron
- lex_sort
- linspace
- log
- log10
- log1p
- log2
- logm
- logspace
- lstsize
- max
- maxi
- meshgrid
- min
- mini
- modulo
- ndgrid
- ndims
- nextpow2
- norm
- ones
- or
- |
- pen2ea
- permute
- pertrans
- prod
- rand
- real
- resize_matrix
- setdiff
- sign
- signm
- size
- solve
- sort
- sqrt
- sqrtm
- squarewave
- ssrand
- sub2ind
- sum
- sysconv
- sysdiag
- syslin
- toeplitz
- trfmod
- trianfml
- tril
- trisolve
- triu
- typeof
- union
- unique
- vectorfind
- zeros
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
typeof
オブジェクトの型
呼び出し手順
[t]=typeof(object)
パラメータ
- object
Scilabオブジェクト
- t
文字列
説明
t=typeof(object)
は以下の文字列のどれかを返します:
- "constant"
オブジェクトが実数または複素数の定数行列の場合.
- "polynomial"
オブジェクトが多項式行列の場合.
- "function"
オブジェクトが関数の場合 (Scilab コード).
- "handle"
オブジェクトがハンドルの場合.
- "string"
オブジェクトが文字列からなる行列の場合.
- "boolean"
オブジェクトが論理値行列の場合.
- "list"
オブジェクトがリストの場合.
- "rational"
オブジェクトが有理行列(伝達行列)の場合.
- "state-space"
オブジェクトが状態空間モデルの場合(syslin参照).
- "sparse"
オブジェクトが(実数)疎行列の場合.
- "boolean sparse"
オブジェクトが論理値の疎行列の場合.
- "hypermat"
オブジェクトがハイパー行列の場合(N >=3 のN次元配列).
- "st"
オブジェクトが構造体配列の場合.
- "ce"
オブジェクトがセル配列の場合.
- the first string in the first list entry
オブジェクトtlistまたはmlistの場合.
- "fptr"
オブジェクトがScilabイントリンシック(CまたはFortranコード)の場合.
- "pointer"
オブジェクトがポインタの場合 (lufact 参照).
- "size implicit"
オブジェクトが 添字に使用される大きさが不明な多項式の場合
- "library"
オブジェクトが関数ライブラリの場合.
- "int8" または "uint8" または "int16" または "uint16" または "int32" または "uint32"
オブジェクトが 8,16または32ビットに保存される[符号なしの]整数の行列の場合. int8参照)
例
<< triu | Elementary Functions | union >> |