Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
inttype
type integers used in integer data types
Calling Sequence
[i] = inttype(x)
Arguments
- x
a matrix of integers (see
int8
,...).- i
an integer.
Description
inttype(x)
returns an integer i
which is the type of the entries
of x
as following:
1 : one byte integer representation;
2 : two bytes integer representation;
4 : four bytes integer representation;
11 : one byte unsigned integer representation;
12 : two bytes unsigned integer representation;
14 : four bytes unsigned integer representation.
If type of x
is double
then i
is 0
.
Examples
x=uint16(1:10); inttype(x)
See Also
Report an issue | ||
<< int8 | Integers | Strings >> |