Hi Alfonso!
I managed to get some data out of a TIQ file. It is essentially an XML file describing the data with the binary data attached after it (not in a tag or anything, just following it). The data type is described in the XML, and in the files I got it is 32-bit integers. The XML also includes a scaling factor to convert the integers to the floating-point IQ values. The I and Q values are effectively interleaved (ie I for the first time point, then Q for that same time point, then I for the second one, Q for the second one, etc.).
After writing some rough Python code to decode the data, I got from the TIQ file essentially the same IQ values I could get from the Matlab file (with some small differences in the least significant bits due to floating point rounding, I assume).
The XML has a million different parameters which I don't understand, but could eventually be useful (or maybe not).
Now I need to get the windowing and FFT right to get the spectra.
Pablo B.