object type
[t]=typeof(object)
a Scilab object
a string
t=typeof(object) returns one of the following
strings:
if object is a real or complex matrix of double.
if object is a polynomial matrix.
if object is an handle.
if object is a matrix made of character strings.
if object is a boolean matrix.
if object is a list.
if object is a rational matrix (transfer matrix).
if object is a state-space model (see syslin).
if object is a (real) sparse matrix.
if object is a boolean sparse matrix.
if object is a hypermatrix (N-dimension array with N<=3.
if object is a structure.
if object is a cell array.
if object is a built-in Scilab function, called also gateway (C, C++ or Fortran code).
if object is a pointer (See an use case: lufact).
if object is a size implicit polynomial used for indexing. This a purely internal value.
if object is a function library.
if object is a matrix of [unsigned] integers stored on 8, 16 or 32 bits. (See int)
![]() |