I have got a huge byte array of big endian floats which I want to convert to ilnumerics float array.
Right now, I do the conversion explicitly. I generate system array of floats by reversing 4 bytes at a time and converting to float which can then be assigned to ilnumerics array.
I am looking for more efficient way to do this. Are there any flags in ILNumerics that enable implicit conversion?