Combining Integer and Noninteger Data - MATLAB & Simulink (original) (raw)
Main Content
If you combine integers with double
, single
, or logical
classes, all elements of the resulting matrix are given the data type of the left-most integer. For example, all elements of the following vector are set to int32
:
A = [true pi int32(1000000) single(17.32) uint8(250)]