Division int32 numbers in MATLAB R2019b
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
vadim onuchin
el 27 de Oct. de 2020
Comentada: Steven Lord
el 27 de Oct. de 2020
Let's see some examples:
first:
1140 / 32
ans =
35.6250
second:
int32(1140) / int32(32)
ans =
int32
36
third:
int32(1140 / 32)
ans =
int32
36
So, why division with int32 numbers is not equivalent like in C++?
0 comentarios
Respuesta aceptada
vadim onuchin
el 27 de Oct. de 2020
Editada: vadim onuchin
el 27 de Oct. de 2020
2 comentarios
Bruno Luong
el 27 de Oct. de 2020
Just wonder what is the risk to overload integer "/" with idivide?
Beside Image Proceesing toolbox where else does MATLAB stock uses integers?
Steven Lord
el 27 de Oct. de 2020
Más respuestas (1)
Cris LaPierre
el 27 de Oct. de 2020
Editada: Cris LaPierre
el 27 de Oct. de 2020
int32 is for storing 32-bit integers. The result of the division is rounded to the closest integer value.
int32(32.5)
0 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!