Skip to Main Content Skip to Search
Product Documentation

uint8 - Convert to 8-bit unsigned integer

Syntax

intArray = uint8(array)

Description

intArray = uint8(array) converts the elements of an array into unsigned 8-bit (1-byte) integers of class uint8.

Input Arguments

array

Array of any numeric class, such as single or double. If array is already of class uint8, the uint8 function has no effect.

Output Arguments

intArray

Array of class uint8. Values range from 0 to 28 – 1.

The uint8 function maps any values in array that are outside the limit to the nearest endpoint. For example,

uint8(2^8)   %  2^8 = 256

returns

ans =
    255

Examples

Convert a double array to uint8:

mydata = uint8(magic(10));

Alternatives

When preallocating integer arrays, specify the class in the call to functions that support a class name input (such as zeros, ones or eye), rather than calling an integer conversion function. For example,

I = uint8(zeros(100));     % Creates an intermediate array

is not as efficient as

I = zeros(100, 'uint8');   % Preferred 

See Also

double | int16 | int32 | int64 | int8 | intmax | intmin | single | uint16 | uint32 | uint64

Tutorials

  


Free MATLAB Interactive Kit

Explore how to use MATLAB to make advancements in engineering and science.


Download free kit

Trials Available

Try the latest version of MATLAB and other MathWorks products.


Get trial software
 © 1984-2012- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS