Hey guys, I need an array of length: 8192 storing data between -32768 and 32767 (2^16-1 range, equivalent to two bytes) after looking at the supported maple types, there seems to be no form of 2 byte data type and storing these values as ints consumes too much data, around 32.8kb! If I could store each value as a two bytes rather than 4, this would halve right?
Therefore, how can I do so?
Cheers,
Harris