MATLAB: Converting a large uint16 array to doubles

uint16

is there a method to convert a large matrix of uint16 data to double without going through each individual element?
Thanks

Best Answer

Not sure if this is what you are really asking,
u = your uint16 array
d = double(u);