MATLAB: Convert decimal to hex in a table

dec2hex

I have a table similar to shown below, how can I convert everything in the table from decimal to hex.
13 232 4 43 88 179 245 107 120 4 232 13 232 4 43 153 20 41 187 136 8 68 13 232 4 73 153 16 68 49 96 4 72 13 224 113 209 88 165 128 250 177 143 178 13 224 54 19 153 64 232 46 64 100 25 13 12 32 130 88 191 3 97 130 238 251 13 12 32 130 88 191 3 97 130 238 251

Best Answer

Would this suffice?
>> dec2hex([13 232 4 43])
ans =
0D
E8
04
2B