Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
iconvert
conversão para representação inteira de 1 a 8 bytes
Seqüência de Chamamento
y = iconvert(X, itype)
Parâmetros
- X
matriz de números decimais ou inteiros codificados. Os números complexos não são aceitos
- y
matriz de inteiros codificados em 1, 2, 4 ou 8 bytes
Descrição
Converte e armazena dados para inteiros de 1, 2, 4 ou 8 bytes. Please refer to the int8() page for a detailled description.
itype | y typeof | range |
---|---|---|
0 | (reals) | |
1 | int8 | [-128, 127] |
2 | int16 | [-32768, 32767] |
4 | int32 | [-2147483648, 2147483647] |
8 | int64 | [-9223372036854775808, 9223372036854775807] |
11 | uint8 | [0, 255] |
12 | uint16 | [0, 65535] |
14 | uint32 | [0, 4294967295] |
18 | uint64 | [0, 18446744073709551615] |
Converting [] always keeps it as is, of type 1 == inttype 0
(decimal type). |
Exemplos
b = int32([1 -120 127 312]) y = iconvert(b,1)
iconvert([-3.6 -2.5 -1.2 1.2 2.5 3.6], 1) iconvert([-%inf %inf %nan], 1) iconvert([-%inf %inf %nan], 11) iconvert(-1, 11) iconvert(-1, 12) iconvert(-1, 14) iconvert(-1, 18)
--> iconvert([-3.6 -2.5 -1.2 1.2 2.5 3.6], 1) ans = -3 -2 -1 1 2 3 --> iconvert([-%inf %inf %nan], 1) ans = -128 127 0 --> iconvert([-%inf %inf %nan], 11) ans = 0 255 0 --> iconvert(-1, 11) ans = 255 --> iconvert(-1, 12) ans = 65535 --> iconvert(-1, 14) ans = 4294967295 --> iconvert(-1, 18) ans = 18446744073709551615
Ver Também
Histórico
Versão | Descrição | |||||||||||||||||||||
6.0 |
|
Report an issue | ||
<< Inteiros | Inteiros | int8 >> |