- Manuel Scilab
- Fonctions Elémentaires
- Mathématiques discrètes
- Virgule flottante
- Représentation d'entier
- Trigonométrie
- abs
- amell
- and
- &
- cumprod
- cumsum
- delip
- diag
- exp
- eye
- gsort
- imag
- intersect
- inttrap
- isdef
- isreal
- kron
- lex_sort
- linspace
- log
- log10
- log2
- logm
- logspace
- lstsize
- max
- meshgrid
- min
- modulo
- norm
- ones
- or
- |
- pen2ea
- prod
- rand
- real
- resize_matrix
- sign
- signm
- size
- solve
- sqrt
- sqrtm
- squarewave
- sum
- syslin
- toeplitz
- trianfml
- tril
- trisolve
- triu
- union
- unique
- zeros
- binomial
- bitand
- bitor
- bloc2exp
- bloc2ss
- cat
- cell2mat
- cellstr
- char
- diff
- dsearch
- flipdim
- imult
- ind2sub
- isempty
- isequal
- isequalbitwise
- isvector
- log1p
- ndgrid
- ndims
- nextpow2
- permute
- pertrans
- setdiff
- ssrand
- sub2ind
- sysconv
- sysdiag
- trfmod
- typeof
- vectorfind
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
object type
Calling Sequence
[t]=typeof(object)
Arguments
- object
Scilab object
- t
string
Description
t=typeof(object)
returns one of the following
strings:
- "constant"
if object is a real or complex constant matrix.
- "polynomial"
if object is a polynomial matrix.
- "function"
if object is a function (Scilab code).
- "handle"
if object is an handle.
- "string"
if object is a matrix made of character strings.
- "boolean"
if object is a boolean matrix.
- "list"
if object is a list.
- "rational"
if object is a rational matrix (transfer matrix).
- "state-space"
if object is a state-space model (see syslin).
- "sparse"
if object is a (real) sparse matrix.
- "boolean sparse"
if object is a boolean sparse matrix.
- "hypermat"
if object is an hypermatrix (N-dimension array with N >=3).
- "st"
if object is a structure array.
- "ce"
if object is a cell array.
- the first string in the first list entry
if object is a tlist or mlist.
- "fptr"
if object is a Scilab intrinsic (C or Fortran code).
- "pointer"
if object is a pointer (See lufact).
- "size implicit"
if object is a size implicit polynom used for indexing.
- "library"
if object is function library.
- "int8" or "uint8" or "int16" or "uint16" or "int32" or "uint32"
if object is a matrix of [unsigned] integers stored on 8, 16 or 32 bits. See int8)
Examples
<< trfmod | Fonctions Elémentaires | vectorfind >> |