Tool/software: Code Composer Studio
Hi,
I'm using the mmwave demo visualizer SDK version 1.1 and I'm recording some data
with the new data recording feature.
The file created by the tool is a *.dat file, like this one:
'xwr16xx_processed_stream_2017_12_07T08_13_45_662.dat'
In the next step, I'm trying to parse it using the capture_demo.m script file,
but I get the following error:
Error using cat
Dimensions of matrices being concatenated are not consistent.
Error in cell2mat (line 83)
m{n} = cat(1,c{:,n});
Error in capture_demo (line 95)
data = cell2mat(cat(2, rawData{:}));
I got some tip that I need to first open the .dat file with CCS and then save it in some manner.
What is the method for open it in CCS and save it in the right format so the capture matlab file can read it?
Thanks,
Boaz