Representation of Numbers in Matlab

Versión 1.0.0.0 (84,6 KB) por Munther
In computers, numbers are classified into three main categories: unsigned integers, signed integers
132 descargas
Actualizado 29 nov 2011

Ver licencia

Positive integer numbers can be represented in Matlab using the unsigned integer classes. Matlab supports four unsigned integer classes which are uint8, uint16, uint32, and uint64. Examples of positive integer numbers are 2, 7, 1023, 12345, etc…

The uint8 class is capable of representing an integer number in the range of 0 to 255. Storing such a number in the computer memory using this class requires one byte.

The uint16 class is capable of representing an integer number in the range of 0 to 65,535. Storing such a number in the computer memory using this class requires two bytes.

The uint32 class is capable of representing an integer number in the range of 0 to 4,294,967,295. Storing such a number in the computer memory using this class requires four bytes.

The uint64 class is capable of representing a number in the range of 0 to 18,446,744,073,709,551,615. Storing such a number in the computer memory using this class requires eight bytes.

Citar como

Munther (2024). Representation of Numbers in Matlab (https://www.mathworks.com/matlabcentral/fileexchange/33992-representation-of-numbers-in-matlab), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2011b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Arithmetic Operations en Help Center y MATLAB Answers.
Etiquetas Añadir etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0